added rspec and cucumber development dependencies
This commit is contained in:
parent
a1a340c921
commit
65f01fe08d
2
Rakefile
2
Rakefile
|
@ -11,6 +11,8 @@ begin
|
|||
gem.homepage = "http://github.com/ngauthier/hydra"
|
||||
gem.authors = ["Nick Gauthier"]
|
||||
gem.add_development_dependency "shoulda", "= 2.10.3"
|
||||
gem.add_development_dependency "rspec", "= 1.3.0"
|
||||
gem.add_development_dependency "cucumber", "= 0.6.4"
|
||||
end
|
||||
Jeweler::GemcutterTasks.new
|
||||
rescue LoadError
|
||||
|
|
|
@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
|||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Nick Gauthier"]
|
||||
s.date = %q{2010-04-04}
|
||||
s.date = %q{2010-04-05}
|
||||
s.description = %q{Spread your tests over multiple machines to test your code faster.}
|
||||
s.email = %q{nick@smartlogicsolutions.com}
|
||||
s.extra_rdoc_files = [
|
||||
|
@ -78,18 +78,18 @@ Gem::Specification.new do |s|
|
|||
s.summary = %q{Distributed testing toolkit}
|
||||
s.test_files = [
|
||||
"test/pipe_test.rb",
|
||||
"test/test_helper.rb",
|
||||
"test/ssh_test.rb",
|
||||
"test/message_test.rb",
|
||||
"test/master_test.rb",
|
||||
"test/fixtures/write_file.rb",
|
||||
"test/fixtures/slow.rb",
|
||||
"test/fixtures/write_file_spec.rb",
|
||||
"test/fixtures/features/step_definitions.rb",
|
||||
"test/fixtures/hello_world.rb",
|
||||
"test/fixtures/write_file_alternate_spec.rb",
|
||||
"test/fixtures/sync_test.rb",
|
||||
"test/fixtures/hello_world.rb",
|
||||
"test/fixtures/features/step_definitions.rb",
|
||||
"test/fixtures/assert_true.rb",
|
||||
"test/fixtures/slow.rb",
|
||||
"test/fixtures/write_file_spec.rb",
|
||||
"test/fixtures/write_file.rb",
|
||||
"test/message_test.rb",
|
||||
"test/test_helper.rb",
|
||||
"test/master_test.rb",
|
||||
"test/runner_test.rb",
|
||||
"test/worker_test.rb"
|
||||
]
|
||||
|
@ -100,11 +100,17 @@ Gem::Specification.new do |s|
|
|||
|
||||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
||||
s.add_development_dependency(%q<shoulda>, ["= 2.10.3"])
|
||||
s.add_development_dependency(%q<rspec>, ["= 1.3.0"])
|
||||
s.add_development_dependency(%q<cucumber>, ["= 0.6.4"])
|
||||
else
|
||||
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
||||
s.add_dependency(%q<rspec>, ["= 1.3.0"])
|
||||
s.add_dependency(%q<cucumber>, ["= 0.6.4"])
|
||||
end
|
||||
else
|
||||
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
||||
s.add_dependency(%q<rspec>, ["= 1.3.0"])
|
||||
s.add_dependency(%q<cucumber>, ["= 0.6.4"])
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue