hydra 0.22.1 → 0.22.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/hydra.gemspec +12 -12
  3. data/lib/hydra/tasks.rb +2 -2
  4. metadata +13 -13
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.22.1
1
+ 0.22.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{hydra}
8
- s.version = "0.22.1"
8
+ s.version = "0.22.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nick Gauthier"]
12
- s.date = %q{2010-09-02}
12
+ s.date = %q{2010-09-07}
13
13
  s.default_executable = %q{warmsnake.rb}
14
14
  s.description = %q{Spread your tests over multiple machines to test your code faster.}
15
15
  s.email = %q{nick@smartlogicsolutions.com}
@@ -89,21 +89,21 @@ Gem::Specification.new do |s|
89
89
  s.summary = %q{Distributed testing toolkit}
90
90
  s.test_files = [
91
91
  "test/pipe_test.rb",
92
- "test/test_helper.rb",
92
+ "test/sync_test.rb",
93
93
  "test/ssh_test.rb",
94
- "test/message_test.rb",
95
- "test/master_test.rb",
96
- "test/fixtures/write_file.rb",
97
- "test/fixtures/slow.rb",
98
- "test/fixtures/write_file_with_pending_spec.rb",
99
- "test/fixtures/write_file_spec.rb",
100
- "test/fixtures/features/step_definitions.rb",
101
- "test/fixtures/hello_world.rb",
102
94
  "test/fixtures/write_file_alternate_spec.rb",
103
95
  "test/fixtures/sync_test.rb",
96
+ "test/fixtures/hello_world.rb",
97
+ "test/fixtures/features/step_definitions.rb",
104
98
  "test/fixtures/assert_true.rb",
99
+ "test/fixtures/slow.rb",
100
+ "test/fixtures/write_file_spec.rb",
101
+ "test/fixtures/write_file_with_pending_spec.rb",
102
+ "test/fixtures/write_file.rb",
103
+ "test/message_test.rb",
104
+ "test/test_helper.rb",
105
+ "test/master_test.rb",
105
106
  "test/runner_test.rb",
106
- "test/sync_test.rb",
107
107
  "test/worker_test.rb"
108
108
  ]
109
109
 
@@ -105,8 +105,8 @@ module Hydra #:nodoc:
105
105
  def define
106
106
  desc "Hydra Tests" + (@name == :hydra ? "" : " for #{@name}")
107
107
  task @name do
108
- if Object.const_defined?('RAILS_ENV') && RAILS_ENV == 'development'
109
- $stderr.puts %{WARNING: RAILS_ENV is "development". Make sure to set it properly (ex: "RAILS_ENV=test rake hydra")}
108
+ if Object.const_defined?('Rails') && Rails.env == 'development'
109
+ $stderr.puts %{WARNING: Rails Environment is "development". Make sure to set it properly (ex: "RAILS_ENV=test rake hydra")}
110
110
  end
111
111
 
112
112
  master = Hydra::Master.new(@opts)
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 22
8
- - 1
9
- version: 0.22.1
8
+ - 2
9
+ version: 0.22.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nick Gauthier
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-09-02 00:00:00 -05:00
17
+ date: 2010-09-07 00:00:00 -04:00
18
18
  default_executable: warmsnake.rb
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -179,19 +179,19 @@ specification_version: 3
179
179
  summary: Distributed testing toolkit
180
180
  test_files:
181
181
  - test/pipe_test.rb
182
- - test/test_helper.rb
182
+ - test/sync_test.rb
183
183
  - test/ssh_test.rb
184
- - test/message_test.rb
185
- - test/master_test.rb
186
- - test/fixtures/write_file.rb
187
- - test/fixtures/slow.rb
188
- - test/fixtures/write_file_with_pending_spec.rb
189
- - test/fixtures/write_file_spec.rb
190
- - test/fixtures/features/step_definitions.rb
191
- - test/fixtures/hello_world.rb
192
184
  - test/fixtures/write_file_alternate_spec.rb
193
185
  - test/fixtures/sync_test.rb
186
+ - test/fixtures/hello_world.rb
187
+ - test/fixtures/features/step_definitions.rb
194
188
  - test/fixtures/assert_true.rb
189
+ - test/fixtures/slow.rb
190
+ - test/fixtures/write_file_spec.rb
191
+ - test/fixtures/write_file_with_pending_spec.rb
192
+ - test/fixtures/write_file.rb
193
+ - test/message_test.rb
194
+ - test/test_helper.rb
195
+ - test/master_test.rb
195
196
  - test/runner_test.rb
196
- - test/sync_test.rb
197
197
  - test/worker_test.rb