gmalamid / synthesis

Ruby code analysis tool for verifying mock object assumptions in tests

This URL has Read+Write access

gmalamid (author)
Sat Nov 15 17:42:36 -0800 2008
commit  bd3a88d044957094939ba58dd9387eb7ccfc5b19
tree    5943af7d951fa181f04300310e90f22b5066b875
parent  62c16675d9cba2291f8ff99ccb17663e1c05f2a5 parent  3cd023e8cf728ee90323074819385e674ff8adb4
synthesis / synthesis.gemspec
9c53a8d9 » gmalamid 2008-06-27 Added gemspec 1 GEMSPEC =Gem::Specification.new do |s|
2 s.name = 'synthesis'
3cd023e8 » gmalamid 2008-11-15 Rescue sexp/ParseTree LoadE... 3 s.version = '0.2.2'
9c53a8d9 » gmalamid 2008-06-27 Added gemspec 4 s.platform = Gem::Platform::RUBY
5 s.rubyforge_project = "synthesis"
6 s.summary, s.description = 'A tool for Synthesized Testing'
081eeb32 » gmalamid 2008-11-10 Added Danilo as an author 7 s.authors = 'Stuart Caborn, George Malamidis, Danilo Sato'
9c53a8d9 » gmalamid 2008-06-27 Added gemspec 8 s.email = 'george@nutrun.com'
9 s.homepage = 'http://synthesis.rubyforge.org'
10 s.has_rdoc = true
6510ea39 » gmalamid 2008-11-12 Fixed gemspec 11 s.rdoc_options += ['--quiet', '--title', 'Synthesis', '--main', 'README.rdoc', '--inline-source']
12 s.extra_rdoc_files = ['README.rdoc', 'COPYING']
85aa3dc7 » gmalamid 2008-08-03 gemspec for github 13 s.files = [
14 "COPYING",
42587cfc » gmalamid 2008-08-03 Forgot to remove require li... 15 "Rakefile",
6510ea39 » gmalamid 2008-11-12 Fixed gemspec 16 "README.rdoc",
42587cfc » gmalamid 2008-08-03 Forgot to remove require li... 17 "synthesis.gemspec",
85aa3dc7 » gmalamid 2008-08-03 gemspec for github 18 "lib/synthesis/adapter/expectations.rb",
19 "lib/synthesis/adapter/mocha.rb",
42587cfc » gmalamid 2008-08-03 Forgot to remove require li... 20 "lib/synthesis/adapter/rspec.rb",
85aa3dc7 » gmalamid 2008-08-03 gemspec for github 21 "lib/synthesis/adapter.rb",
22 "lib/synthesis/class.rb",
23 "lib/synthesis/expectation.rb",
24 "lib/synthesis/expectation_interceptor.rb",
25 "lib/synthesis/expectation_matcher.rb",
26 "lib/synthesis/expectation_record.rb",
53504e89 » gmalamid 2008-08-03 added extra files to experi... 27 "lib/synthesis/formatter/dot.rb",
28 "lib/synthesis/formatter/text.rb",
29 "lib/synthesis/formatter.rb",
cc9b3650 » gmalamid 2008-10-21 Renamed ExpectationRecordEn... 30 "lib/synthesis/expectation_recorder.rb",
85aa3dc7 » gmalamid 2008-08-03 gemspec for github 31 "lib/synthesis/logging.rb",
32 "lib/synthesis/method_invocation_watcher.rb",
33 "lib/synthesis/module.rb",
34 "lib/synthesis/object.rb",
35 "lib/synthesis/recordable.rb",
36 "lib/synthesis/reporter.rb",
37 "lib/synthesis/runner.rb",
38 "lib/synthesis/task.rb",
39 "lib/synthesis/util/mock_instance/mocha.rb",
40 "lib/synthesis/util/mock_instance/rspec.rb",
41 "lib/synthesis/util/mock_instance.rb",
42587cfc » gmalamid 2008-08-03 Forgot to remove require li... 42 "lib/synthesis.rb"
85aa3dc7 » gmalamid 2008-08-03 gemspec for github 43 ]
9c53a8d9 » gmalamid 2008-06-27 Added gemspec 44 end