-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmatchy.gemspec
53 lines (51 loc) · 1.74 KB
/
matchy.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
Gem::Specification.new do |s|
s.name = "matchy"
s.version = "0.3.1"
s.date = "2009-02-08"
s.summary = "RSpec-esque matchers for use in Test::Unit"
s.email = "[email protected]"
s.homepage = "http://github.com/mhennemeyer/matchy"
s.description = "A 300loc refactoring of Jeremy Mcanally's Matchy. Original Description: Hate writing assertions? Need a little behavior-driven love in your tests? Then matchy is for you."
s.has_rdoc = true
s.authors = ["Jeremy McAnally", "Matthias Hennemeyer"]
s.files = [
"History.txt",
"Manifest.txt",
"README.rdoc",
"Rakefile",
"matchy.gemspec",
"History.txt",
"License.txt",
"Manifest.txt",
"PostInstall.txt",
"Rakefile",
"config/hoe.rb",
"config/requirements.rb",
"lib/matchy.rb",
"lib/matchy/version.rb",
"lib/matchy/expectation_builder.rb",
"lib/matchy/modals.rb",
"lib/matchy/def_matcher.rb",
"lib/matchy/matcher_builder.rb",
"lib/matchy/built_in/enumerable_expectations.rb",
"lib/matchy/built_in/error_expectations.rb",
"lib/matchy/built_in/operator_expectations.rb",
"lib/matchy/built_in/truth_expectations.rb",
"lib/matchy/built_in/change_expectations.rb",
"setup.rb"
]
s.test_files = [
"test/test_change_expectation.rb",
"test/test_expectation_builder.rb",
"test/test_minitest_compatibility.rb",
"test/test_def_matcher.rb",
"test/test_enumerable_expectations.rb",
"test/test_error_expectations.rb",
"test/test_matcher_builder.rb",
"test/test_operator_expectations.rb",
"test/test_truth_expectations.rb",
"test/test_modals.rb"
]
s.rdoc_options = ["--main", "README.rdoc"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.rdoc"]
end