public
Description: Stubbing and mocking that doesn't hurt or suck. WIN.
Homepage:
Clone URL: git://github.com/jeremymcanally/stump.git
Click here to lend your support to: stump and make a donation at www.pledgie.com !
stump / stump.gemspec
100644 45 lines (42 sloc) 1.177 kb
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
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 = "jeremy@entp.com"
  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