-
Notifications
You must be signed in to change notification settings - Fork 3
/
synthesis.gemspec
43 lines (43 loc) · 1.5 KB
/
synthesis.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
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 = '[email protected]'
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