-
Notifications
You must be signed in to change notification settings - Fork 0
/
must_be.gemspec
68 lines (63 loc) · 2.25 KB
/
must_be.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: must_be 1.1.0 ruby lib
Gem::Specification.new do |s|
s.name = "must_be".freeze
s.version = "1.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["William Taysom".freeze]
s.date = "2018-05-22"
s.description = "must_be provides runtime assertions which can easily be disabled in production environments. Likewise, the notifier can be customized to raise errors, log failure, enter the debugger, or anything else.".freeze
s.email = "[email protected]".freeze
s.extra_rdoc_files = [
"ChangeLog.md",
"README.md"
]
s.files = [
"ChangeLog.md",
"Gemfile",
"Gemfile.lock",
"README.md",
"Rakefile",
"VERSION",
"doc/readme/examples.rb",
"doc/readme/run_examples.rb",
"lib/must_be.rb",
"lib/must_be/attr_typed.rb",
"lib/must_be/basic.rb",
"lib/must_be/containers.rb",
"lib/must_be/containers_registered_classes.rb",
"lib/must_be/core.rb",
"lib/must_be/nonstandard_control_flow.rb",
"lib/must_be/proxy.rb",
"must_be.gemspec",
"spec/must_be/attr_typed_spec.rb",
"spec/must_be/basic_spec.rb",
"spec/must_be/containers_spec.rb",
"spec/must_be/core_spec.rb",
"spec/must_be/nonstandard_control_flow_spec.rb",
"spec/must_be/proxy_spec.rb",
"spec/notify_matcher_spec.rb",
"spec/spec_helper.rb",
"spec/typical_usage_spec.rb"
]
s.homepage = "http://github.com/wtaysom/must_be".freeze
s.rubygems_version = "2.7.3".freeze
s.summary = "must_be Runtime Assertions".freeze
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec-its>.freeze, ["~> 1.2"])
s.add_development_dependency(%q<jeweler>.freeze, ["~> 1.4"])
else
s.add_dependency(%q<rspec-its>.freeze, ["~> 1.2"])
s.add_dependency(%q<jeweler>.freeze, ["~> 1.4"])
end
else
s.add_dependency(%q<rspec-its>.freeze, ["~> 1.2"])
s.add_dependency(%q<jeweler>.freeze, ["~> 1.4"])
end
end