-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathstump.gemspec
44 lines (42 loc) · 1.15 KB
/
stump.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
Gem::Specification.new do |s|
s.name = "stump"
s.version = "0.0.2"
s.date = "2008-10-30"
s.summary = "Stubbing and mocking that isn't painful."
s.email = "[email protected]"
s.homepage = "http://github.com/jeremymcanally/stump"
s.description = "Stubbing and mocking that isn't painful, fanciful, and doesn't inspire any sort of contempt or bitterness."
s.has_rdoc = true
s.authors = ["Jeremy McAnally"]
s.files = [
"History.txt",
"Manifest.txt",
"README.rdoc",
"Rakefile",
"stump.gemspec",
"History.txt",
"License.txt",
"Manifest.txt",
"PostInstall.txt",
"Rakefile",
"config/hoe.rb",
"config/requirements.rb",
"lib/stump.rb",
"lib/stump/metaid.rb",
"lib/stump/mock.rb",
"lib/stump/mocks.rb",
"lib/stump/stub.rb",
"lib/stump/proxy.rb",
"lib/stump/version.rb",
"lib/stump/core_ext/test_case.rb",
"setup.rb"
]
s.test_files = [
"test/test_stub.rb",
"test/test_mock.rb",
"test/test_proxy.rb",
"test/test_helper.rb"
]
s.rdoc_options = ["--main", "README.rdoc"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.rdoc"]
end