updated gemspec

This commit is contained in:
Nick Gauthier 2010-01-28 16:53:41 -05:00
parent f26d7393d3
commit 21f38b5633
1 changed files with 23 additions and 19 deletions

View File

@ -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.3.0" s.version = "0.4.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-27} s.date = %q{2010-01-28}
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,20 +27,23 @@ Gem::Specification.new do |s|
"VERSION", "VERSION",
"hydra.gemspec", "hydra.gemspec",
"lib/hydra.rb", "lib/hydra.rb",
"lib/hydra/io.rb",
"lib/hydra/message.rb", "lib/hydra/message.rb",
"lib/hydra/message/runner_messages.rb", "lib/hydra/message/runner_messages.rb",
"lib/hydra/message/worker_messages.rb",
"lib/hydra/messaging_io.rb",
"lib/hydra/pipe.rb", "lib/hydra/pipe.rb",
"lib/hydra/runner.rb", "lib/hydra/runner.rb",
"lib/hydra/ssh.rb", "lib/hydra/ssh.rb",
"test/echo_the_dolphin.rb", "lib/hydra/worker.rb",
"test/helper.rb", "test/fixtures/assert_true.rb",
"test/sample_tests/assert_true.rb", "test/fixtures/echo_the_dolphin.rb",
"test/sample_tests/write_file.rb", "test/fixtures/write_file.rb",
"test/test_message.rb", "test/message_test.rb",
"test/test_pipe.rb", "test/pipe_test.rb",
"test/test_runner.rb", "test/runner_test.rb",
"test/test_ssh.rb" "test/ssh_test.rb",
"test/test_helper.rb",
"test/worker_test.rb"
] ]
s.homepage = %q{http://github.com/ngauthier/hydra} s.homepage = %q{http://github.com/ngauthier/hydra}
s.rdoc_options = ["--charset=UTF-8"] s.rdoc_options = ["--charset=UTF-8"]
@ -48,14 +51,15 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.5} s.rubygems_version = %q{1.3.5}
s.summary = %q{Distributed testing toolkit} s.summary = %q{Distributed testing toolkit}
s.test_files = [ s.test_files = [
"test/test_ssh.rb", "test/message_test.rb",
"test/helper.rb", "test/test_helper.rb",
"test/test_message.rb", "test/ssh_test.rb",
"test/test_pipe.rb", "test/fixtures/write_file.rb",
"test/test_runner.rb", "test/fixtures/assert_true.rb",
"test/sample_tests/write_file.rb", "test/fixtures/echo_the_dolphin.rb",
"test/sample_tests/assert_true.rb", "test/worker_test.rb",
"test/echo_the_dolphin.rb" "test/runner_test.rb",
"test/pipe_test.rb"
] ]
if s.respond_to? :specification_version then if s.respond_to? :specification_version then