Version 0.19.1: added worker events. fixed deadlock bug. warn when env is development.
This commit is contained in:
parent
3dbd30a80e
commit
c1ed4ec12a
|
@ -5,11 +5,11 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{hydra}
|
s.name = %q{hydra}
|
||||||
s.version = "0.19.0"
|
s.version = "0.19.1"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Nick Gauthier"]
|
s.authors = ["Nick Gauthier"]
|
||||||
s.date = %q{2010-06-07}
|
s.date = %q{2010-06-18}
|
||||||
s.description = %q{Spread your tests over multiple machines to test your code faster.}
|
s.description = %q{Spread your tests over multiple machines to test your code faster.}
|
||||||
s.email = %q{nick@smartlogicsolutions.com}
|
s.email = %q{nick@smartlogicsolutions.com}
|
||||||
s.extra_rdoc_files = [
|
s.extra_rdoc_files = [
|
||||||
|
@ -85,21 +85,21 @@ Gem::Specification.new do |s|
|
||||||
s.summary = %q{Distributed testing toolkit}
|
s.summary = %q{Distributed testing toolkit}
|
||||||
s.test_files = [
|
s.test_files = [
|
||||||
"test/pipe_test.rb",
|
"test/pipe_test.rb",
|
||||||
"test/test_helper.rb",
|
"test/sync_test.rb",
|
||||||
"test/ssh_test.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_with_pending_spec.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/write_file_alternate_spec.rb",
|
||||||
"test/fixtures/sync_test.rb",
|
"test/fixtures/sync_test.rb",
|
||||||
|
"test/fixtures/hello_world.rb",
|
||||||
|
"test/fixtures/features/step_definitions.rb",
|
||||||
"test/fixtures/assert_true.rb",
|
"test/fixtures/assert_true.rb",
|
||||||
|
"test/fixtures/slow.rb",
|
||||||
|
"test/fixtures/write_file_spec.rb",
|
||||||
|
"test/fixtures/write_file_with_pending_spec.rb",
|
||||||
|
"test/fixtures/write_file.rb",
|
||||||
|
"test/message_test.rb",
|
||||||
|
"test/test_helper.rb",
|
||||||
|
"test/master_test.rb",
|
||||||
"test/runner_test.rb",
|
"test/runner_test.rb",
|
||||||
"test/sync_test.rb",
|
|
||||||
"test/worker_test.rb"
|
"test/worker_test.rb"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue