causes-hydra 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. data/.document +5 -0
  2. data/.gitignore +22 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +39 -0
  5. data/Rakefile +56 -0
  6. data/TODO +18 -0
  7. data/VERSION +1 -0
  8. data/bin/warmsnake.rb +76 -0
  9. data/caliper.yml +6 -0
  10. data/hydra-icon-64x64.png +0 -0
  11. data/hydra.gemspec +130 -0
  12. data/hydra_gray.png +0 -0
  13. data/lib/hydra.rb +16 -0
  14. data/lib/hydra/cucumber/formatter.rb +29 -0
  15. data/lib/hydra/hash.rb +16 -0
  16. data/lib/hydra/js/lint.js +5150 -0
  17. data/lib/hydra/listener/abstract.rb +39 -0
  18. data/lib/hydra/listener/minimal_output.rb +24 -0
  19. data/lib/hydra/listener/notifier.rb +17 -0
  20. data/lib/hydra/listener/progress_bar.rb +48 -0
  21. data/lib/hydra/listener/report_generator.rb +30 -0
  22. data/lib/hydra/master.rb +249 -0
  23. data/lib/hydra/message.rb +47 -0
  24. data/lib/hydra/message/master_messages.rb +19 -0
  25. data/lib/hydra/message/runner_messages.rb +52 -0
  26. data/lib/hydra/message/worker_messages.rb +52 -0
  27. data/lib/hydra/messaging_io.rb +46 -0
  28. data/lib/hydra/pipe.rb +61 -0
  29. data/lib/hydra/runner.rb +305 -0
  30. data/lib/hydra/safe_fork.rb +31 -0
  31. data/lib/hydra/spec/autorun_override.rb +3 -0
  32. data/lib/hydra/spec/hydra_formatter.rb +26 -0
  33. data/lib/hydra/ssh.rb +41 -0
  34. data/lib/hydra/stdio.rb +16 -0
  35. data/lib/hydra/sync.rb +99 -0
  36. data/lib/hydra/tasks.rb +342 -0
  37. data/lib/hydra/trace.rb +24 -0
  38. data/lib/hydra/worker.rb +150 -0
  39. data/test/fixtures/assert_true.rb +7 -0
  40. data/test/fixtures/config.yml +4 -0
  41. data/test/fixtures/features/step_definitions.rb +21 -0
  42. data/test/fixtures/features/write_alternate_file.feature +7 -0
  43. data/test/fixtures/features/write_file.feature +7 -0
  44. data/test/fixtures/hello_world.rb +3 -0
  45. data/test/fixtures/js_file.js +4 -0
  46. data/test/fixtures/json_data.json +4 -0
  47. data/test/fixtures/slow.rb +9 -0
  48. data/test/fixtures/sync_test.rb +8 -0
  49. data/test/fixtures/write_file.rb +10 -0
  50. data/test/fixtures/write_file_alternate_spec.rb +10 -0
  51. data/test/fixtures/write_file_spec.rb +9 -0
  52. data/test/fixtures/write_file_with_pending_spec.rb +11 -0
  53. data/test/master_test.rb +152 -0
  54. data/test/message_test.rb +31 -0
  55. data/test/pipe_test.rb +38 -0
  56. data/test/runner_test.rb +153 -0
  57. data/test/ssh_test.rb +14 -0
  58. data/test/sync_test.rb +113 -0
  59. data/test/test_helper.rb +68 -0
  60. data/test/worker_test.rb +60 -0
  61. metadata +209 -0
metadata ADDED
@@ -0,0 +1,209 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: causes-hydra
3
+ version: !ruby/object:Gem::Version
4
+ hash: 75
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 21
9
+ - 0
10
+ version: 0.21.0
11
+ platform: ruby
12
+ authors:
13
+ - Nick Gauthier
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2011-03-07 00:00:00 -08:00
19
+ default_executable: warmsnake.rb
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: shoulda
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - "="
28
+ - !ruby/object:Gem::Version
29
+ hash: 33
30
+ segments:
31
+ - 2
32
+ - 10
33
+ - 3
34
+ version: 2.10.3
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: rspec
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - "="
44
+ - !ruby/object:Gem::Version
45
+ hash: 62196421
46
+ segments:
47
+ - 2
48
+ - 0
49
+ - 0
50
+ - beta
51
+ - 19
52
+ version: 2.0.0.beta.19
53
+ type: :development
54
+ version_requirements: *id002
55
+ - !ruby/object:Gem::Dependency
56
+ name: cucumber
57
+ prerelease: false
58
+ requirement: &id003 !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - "="
62
+ - !ruby/object:Gem::Version
63
+ hash: 53
64
+ segments:
65
+ - 0
66
+ - 8
67
+ - 5
68
+ version: 0.8.5
69
+ type: :development
70
+ version_requirements: *id003
71
+ - !ruby/object:Gem::Dependency
72
+ name: therubyracer
73
+ prerelease: false
74
+ requirement: &id004 !ruby/object:Gem::Requirement
75
+ none: false
76
+ requirements:
77
+ - - "="
78
+ - !ruby/object:Gem::Version
79
+ hash: 11
80
+ segments:
81
+ - 0
82
+ - 7
83
+ - 4
84
+ version: 0.7.4
85
+ type: :development
86
+ version_requirements: *id004
87
+ description: Spread your tests over multiple machines to test your code faster.
88
+ email: nick@smartlogicsolutions.com
89
+ executables:
90
+ - warmsnake.rb
91
+ extensions: []
92
+
93
+ extra_rdoc_files:
94
+ - LICENSE
95
+ - README.rdoc
96
+ - TODO
97
+ files:
98
+ - .document
99
+ - .gitignore
100
+ - LICENSE
101
+ - README.rdoc
102
+ - Rakefile
103
+ - TODO
104
+ - VERSION
105
+ - bin/warmsnake.rb
106
+ - caliper.yml
107
+ - hydra-icon-64x64.png
108
+ - hydra.gemspec
109
+ - hydra_gray.png
110
+ - lib/hydra.rb
111
+ - lib/hydra/cucumber/formatter.rb
112
+ - lib/hydra/hash.rb
113
+ - lib/hydra/js/lint.js
114
+ - lib/hydra/listener/abstract.rb
115
+ - lib/hydra/listener/minimal_output.rb
116
+ - lib/hydra/listener/notifier.rb
117
+ - lib/hydra/listener/progress_bar.rb
118
+ - lib/hydra/listener/report_generator.rb
119
+ - lib/hydra/master.rb
120
+ - lib/hydra/message.rb
121
+ - lib/hydra/message/master_messages.rb
122
+ - lib/hydra/message/runner_messages.rb
123
+ - lib/hydra/message/worker_messages.rb
124
+ - lib/hydra/messaging_io.rb
125
+ - lib/hydra/pipe.rb
126
+ - lib/hydra/runner.rb
127
+ - lib/hydra/safe_fork.rb
128
+ - lib/hydra/spec/autorun_override.rb
129
+ - lib/hydra/spec/hydra_formatter.rb
130
+ - lib/hydra/ssh.rb
131
+ - lib/hydra/stdio.rb
132
+ - lib/hydra/sync.rb
133
+ - lib/hydra/tasks.rb
134
+ - lib/hydra/trace.rb
135
+ - lib/hydra/worker.rb
136
+ - test/fixtures/assert_true.rb
137
+ - test/fixtures/config.yml
138
+ - test/fixtures/features/step_definitions.rb
139
+ - test/fixtures/features/write_alternate_file.feature
140
+ - test/fixtures/features/write_file.feature
141
+ - test/fixtures/hello_world.rb
142
+ - test/fixtures/js_file.js
143
+ - test/fixtures/json_data.json
144
+ - test/fixtures/slow.rb
145
+ - test/fixtures/sync_test.rb
146
+ - test/fixtures/write_file.rb
147
+ - test/fixtures/write_file_alternate_spec.rb
148
+ - test/fixtures/write_file_spec.rb
149
+ - test/fixtures/write_file_with_pending_spec.rb
150
+ - test/master_test.rb
151
+ - test/message_test.rb
152
+ - test/pipe_test.rb
153
+ - test/runner_test.rb
154
+ - test/ssh_test.rb
155
+ - test/sync_test.rb
156
+ - test/test_helper.rb
157
+ - test/worker_test.rb
158
+ has_rdoc: true
159
+ homepage: http://github.com/ngauthier/hydra
160
+ licenses: []
161
+
162
+ post_install_message:
163
+ rdoc_options:
164
+ - --charset=UTF-8
165
+ require_paths:
166
+ - lib
167
+ required_ruby_version: !ruby/object:Gem::Requirement
168
+ none: false
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ hash: 3
173
+ segments:
174
+ - 0
175
+ version: "0"
176
+ required_rubygems_version: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ">="
180
+ - !ruby/object:Gem::Version
181
+ hash: 3
182
+ segments:
183
+ - 0
184
+ version: "0"
185
+ requirements: []
186
+
187
+ rubyforge_project:
188
+ rubygems_version: 1.6.1
189
+ signing_key:
190
+ specification_version: 3
191
+ summary: Distributed testing toolkit
192
+ test_files:
193
+ - test/runner_test.rb
194
+ - test/test_helper.rb
195
+ - test/message_test.rb
196
+ - test/pipe_test.rb
197
+ - test/ssh_test.rb
198
+ - test/fixtures/assert_true.rb
199
+ - test/fixtures/write_file_spec.rb
200
+ - test/fixtures/write_file_alternate_spec.rb
201
+ - test/fixtures/write_file.rb
202
+ - test/fixtures/hello_world.rb
203
+ - test/fixtures/slow.rb
204
+ - test/fixtures/sync_test.rb
205
+ - test/fixtures/write_file_with_pending_spec.rb
206
+ - test/fixtures/features/step_definitions.rb
207
+ - test/worker_test.rb
208
+ - test/sync_test.rb
209
+ - test/master_test.rb