bumped to version v0.5.0
This commit is contained in:
parent
e3a787673b
commit
b8cbe0feec
|
@ -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.4.1"
|
s.version = "0.5.0"
|
||||||
|
|
||||||
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-01-28}
|
s.date = %q{2010-01-29}
|
||||||
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 = [
|
||||||
|
@ -27,7 +27,9 @@ Gem::Specification.new do |s|
|
||||||
"VERSION",
|
"VERSION",
|
||||||
"hydra.gemspec",
|
"hydra.gemspec",
|
||||||
"lib/hydra.rb",
|
"lib/hydra.rb",
|
||||||
|
"lib/hydra/master.rb",
|
||||||
"lib/hydra/message.rb",
|
"lib/hydra/message.rb",
|
||||||
|
"lib/hydra/message/master_messages.rb",
|
||||||
"lib/hydra/message/runner_messages.rb",
|
"lib/hydra/message/runner_messages.rb",
|
||||||
"lib/hydra/message/worker_messages.rb",
|
"lib/hydra/message/worker_messages.rb",
|
||||||
"lib/hydra/messaging_io.rb",
|
"lib/hydra/messaging_io.rb",
|
||||||
|
@ -38,6 +40,7 @@ Gem::Specification.new do |s|
|
||||||
"test/fixtures/assert_true.rb",
|
"test/fixtures/assert_true.rb",
|
||||||
"test/fixtures/echo_the_dolphin.rb",
|
"test/fixtures/echo_the_dolphin.rb",
|
||||||
"test/fixtures/write_file.rb",
|
"test/fixtures/write_file.rb",
|
||||||
|
"test/master_test.rb",
|
||||||
"test/message_test.rb",
|
"test/message_test.rb",
|
||||||
"test/pipe_test.rb",
|
"test/pipe_test.rb",
|
||||||
"test/runner_test.rb",
|
"test/runner_test.rb",
|
||||||
|
@ -57,6 +60,7 @@ Gem::Specification.new do |s|
|
||||||
"test/fixtures/write_file.rb",
|
"test/fixtures/write_file.rb",
|
||||||
"test/fixtures/assert_true.rb",
|
"test/fixtures/assert_true.rb",
|
||||||
"test/fixtures/echo_the_dolphin.rb",
|
"test/fixtures/echo_the_dolphin.rb",
|
||||||
|
"test/master_test.rb",
|
||||||
"test/worker_test.rb",
|
"test/worker_test.rb",
|
||||||
"test/runner_test.rb",
|
"test/runner_test.rb",
|
||||||
"test/pipe_test.rb"
|
"test/pipe_test.rb"
|
||||||
|
|
Loading…
Reference in New Issue