public
Description: Ruby code analysis tool for verifying mock object assumptions in tests
Homepage: http://synthesis.rubyforge.org
Clone URL: git://github.com/gmalamid/synthesis.git
gmalamid (author)
Mon Jul 06 15:52:20 -0700 2009
commit  98bb354559757e116ca99992661327e22cdc0b51
tree    d59a55b1abf9f5694126e154ebadc0f89c580214
parent  73e7b24c9fc2f189025b5cda81fe8af127e6c8fb
synthesis / synthesis.gemspec
100644 43 lines (43 sloc) 1.539 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
GEMSPEC =Gem::Specification.new do |s|
  s.name = 'synthesis'
  s.version = '0.2.8'
  s.platform = Gem::Platform::RUBY
  s.rubyforge_project = "synthesis"
  s.summary, s.description = 'A tool for verifying mock object assumptions'
  s.authors = 'Stuart Caborn, George Malamidis, Danilo Sato'
  s.email = 'george@nutrun.com'
  s.homepage = 'http://synthesis.rubyforge.org'
  s.has_rdoc = true
  s.rdoc_options += ['--quiet', '--title', 'Synthesis', '--main', 'README.rdoc', '--inline-source']
  s.extra_rdoc_files = ['README.rdoc', 'COPYING']
  s.files = [
    "COPYING",
    "Rakefile",
    "README.rdoc",
    "synthesis.gemspec",
    "lib/synthesis/adapter/mocha.rb",
    "lib/synthesis/adapter/rspec.rb",
    "lib/synthesis/adapter.rb",
    "lib/synthesis/class.rb",
    "lib/synthesis/expectation.rb",
    "lib/synthesis/expectation_interceptor.rb",
    "lib/synthesis/expectation_matcher.rb",
    "lib/synthesis/expectation_record.rb",
    "lib/synthesis/formatter/dot.rb",
    "lib/synthesis/formatter/text.rb",
    "lib/synthesis/formatter.rb",
    "lib/synthesis/expectation_recorder.rb",
    "lib/synthesis/logging.rb",
    "lib/synthesis/method_invocation_watcher.rb",
    "lib/synthesis/module.rb",
    "lib/synthesis/object.rb",
    "lib/synthesis/recordable.rb",
    "lib/synthesis/reporter.rb",
    "lib/synthesis/runner.rb",
    "lib/synthesis/task.rb",
    "lib/synthesis/util/mock_instance/mocha.rb",
    "lib/synthesis/util/mock_instance/rspec.rb",
    "lib/synthesis/util/mock_instance.rb",
    "lib/synthesis.rb"
  ]
end