bellmyer-hydra 0.20.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) 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/bellmyer-hydra.gemspec +128 -0
  9. data/caliper.yml +6 -0
  10. data/hydra-icon-64x64.png +0 -0
  11. data/hydra_gray.png +0 -0
  12. data/lib/hydra.rb +16 -0
  13. data/lib/hydra/cucumber/formatter.rb +30 -0
  14. data/lib/hydra/hash.rb +16 -0
  15. data/lib/hydra/js/lint.js +5150 -0
  16. data/lib/hydra/listener/abstract.rb +39 -0
  17. data/lib/hydra/listener/minimal_output.rb +24 -0
  18. data/lib/hydra/listener/notifier.rb +17 -0
  19. data/lib/hydra/listener/progress_bar.rb +48 -0
  20. data/lib/hydra/listener/report_generator.rb +30 -0
  21. data/lib/hydra/master.rb +238 -0
  22. data/lib/hydra/message.rb +47 -0
  23. data/lib/hydra/message/master_messages.rb +19 -0
  24. data/lib/hydra/message/runner_messages.rb +46 -0
  25. data/lib/hydra/message/worker_messages.rb +52 -0
  26. data/lib/hydra/messaging_io.rb +46 -0
  27. data/lib/hydra/pipe.rb +61 -0
  28. data/lib/hydra/runner.rb +265 -0
  29. data/lib/hydra/safe_fork.rb +31 -0
  30. data/lib/hydra/spec/autorun_override.rb +12 -0
  31. data/lib/hydra/spec/hydra_formatter.rb +17 -0
  32. data/lib/hydra/ssh.rb +41 -0
  33. data/lib/hydra/stdio.rb +16 -0
  34. data/lib/hydra/sync.rb +99 -0
  35. data/lib/hydra/tasks.rb +342 -0
  36. data/lib/hydra/trace.rb +24 -0
  37. data/lib/hydra/worker.rb +150 -0
  38. data/test/fixtures/assert_true.rb +7 -0
  39. data/test/fixtures/config.yml +4 -0
  40. data/test/fixtures/features/step_definitions.rb +21 -0
  41. data/test/fixtures/features/write_alternate_file.feature +7 -0
  42. data/test/fixtures/features/write_file.feature +7 -0
  43. data/test/fixtures/hello_world.rb +3 -0
  44. data/test/fixtures/js_file.js +4 -0
  45. data/test/fixtures/json_data.json +4 -0
  46. data/test/fixtures/slow.rb +9 -0
  47. data/test/fixtures/sync_test.rb +8 -0
  48. data/test/fixtures/write_file.rb +10 -0
  49. data/test/fixtures/write_file_alternate_spec.rb +10 -0
  50. data/test/fixtures/write_file_spec.rb +9 -0
  51. data/test/fixtures/write_file_with_pending_spec.rb +11 -0
  52. data/test/master_test.rb +152 -0
  53. data/test/message_test.rb +31 -0
  54. data/test/pipe_test.rb +38 -0
  55. data/test/runner_test.rb +156 -0
  56. data/test/ssh_test.rb +14 -0
  57. data/test/sync_test.rb +113 -0
  58. data/test/test_helper.rb +68 -0
  59. data/test/worker_test.rb +60 -0
  60. metadata +208 -0
metadata ADDED
@@ -0,0 +1,208 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bellmyer-hydra
3
+ version: !ruby/object:Gem::Version
4
+ hash: 93
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 20
9
+ - 9
10
+ version: 0.20.9
11
+ platform: ruby
12
+ authors:
13
+ - Nick Gauthier
14
+ - "J\xC3\xB8rgen Oreh\xC3\xB8j Erichsen"
15
+ - Jaime Bellmyer
16
+ autorequire:
17
+ bindir: bin
18
+ cert_chain: []
19
+
20
+ date: 2010-07-17 00:00:00 -05:00
21
+ default_executable:
22
+ dependencies:
23
+ - !ruby/object:Gem::Dependency
24
+ name: shoulda
25
+ prerelease: false
26
+ requirement: &id001 !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - "="
30
+ - !ruby/object:Gem::Version
31
+ hash: 33
32
+ segments:
33
+ - 2
34
+ - 10
35
+ - 3
36
+ version: 2.10.3
37
+ type: :development
38
+ version_requirements: *id001
39
+ - !ruby/object:Gem::Dependency
40
+ name: rspec
41
+ prerelease: false
42
+ requirement: &id002 !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - "="
46
+ - !ruby/object:Gem::Version
47
+ hash: 27
48
+ segments:
49
+ - 1
50
+ - 3
51
+ - 0
52
+ version: 1.3.0
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: 7
64
+ segments:
65
+ - 0
66
+ - 7
67
+ - 2
68
+ version: 0.7.2
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: jaime@kconrails.com
89
+ executables: []
90
+
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
+ - bellmyer-hydra.gemspec
106
+ - caliper.yml
107
+ - hydra-icon-64x64.png
108
+ - hydra_gray.png
109
+ - lib/hydra.rb
110
+ - lib/hydra/cucumber/formatter.rb
111
+ - lib/hydra/hash.rb
112
+ - lib/hydra/js/lint.js
113
+ - lib/hydra/listener/abstract.rb
114
+ - lib/hydra/listener/minimal_output.rb
115
+ - lib/hydra/listener/notifier.rb
116
+ - lib/hydra/listener/progress_bar.rb
117
+ - lib/hydra/listener/report_generator.rb
118
+ - lib/hydra/master.rb
119
+ - lib/hydra/message.rb
120
+ - lib/hydra/message/master_messages.rb
121
+ - lib/hydra/message/runner_messages.rb
122
+ - lib/hydra/message/worker_messages.rb
123
+ - lib/hydra/messaging_io.rb
124
+ - lib/hydra/pipe.rb
125
+ - lib/hydra/runner.rb
126
+ - lib/hydra/safe_fork.rb
127
+ - lib/hydra/spec/autorun_override.rb
128
+ - lib/hydra/spec/hydra_formatter.rb
129
+ - lib/hydra/ssh.rb
130
+ - lib/hydra/stdio.rb
131
+ - lib/hydra/sync.rb
132
+ - lib/hydra/tasks.rb
133
+ - lib/hydra/trace.rb
134
+ - lib/hydra/worker.rb
135
+ - test/fixtures/assert_true.rb
136
+ - test/fixtures/config.yml
137
+ - test/fixtures/features/step_definitions.rb
138
+ - test/fixtures/features/write_alternate_file.feature
139
+ - test/fixtures/features/write_file.feature
140
+ - test/fixtures/hello_world.rb
141
+ - test/fixtures/js_file.js
142
+ - test/fixtures/json_data.json
143
+ - test/fixtures/slow.rb
144
+ - test/fixtures/sync_test.rb
145
+ - test/fixtures/write_file.rb
146
+ - test/fixtures/write_file_alternate_spec.rb
147
+ - test/fixtures/write_file_spec.rb
148
+ - test/fixtures/write_file_with_pending_spec.rb
149
+ - test/master_test.rb
150
+ - test/message_test.rb
151
+ - test/pipe_test.rb
152
+ - test/runner_test.rb
153
+ - test/ssh_test.rb
154
+ - test/sync_test.rb
155
+ - test/test_helper.rb
156
+ - test/worker_test.rb
157
+ has_rdoc: true
158
+ homepage: http://github.com/bellmyer/hydra
159
+ licenses: []
160
+
161
+ post_install_message:
162
+ rdoc_options:
163
+ - --charset=UTF-8
164
+ require_paths:
165
+ - lib
166
+ required_ruby_version: !ruby/object:Gem::Requirement
167
+ none: false
168
+ requirements:
169
+ - - ">="
170
+ - !ruby/object:Gem::Version
171
+ hash: 3
172
+ segments:
173
+ - 0
174
+ version: "0"
175
+ required_rubygems_version: !ruby/object:Gem::Requirement
176
+ none: false
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ hash: 3
181
+ segments:
182
+ - 0
183
+ version: "0"
184
+ requirements: []
185
+
186
+ rubyforge_project:
187
+ rubygems_version: 1.3.7
188
+ signing_key:
189
+ specification_version: 3
190
+ summary: Distributed testing toolkit
191
+ test_files:
192
+ - test/fixtures/assert_true.rb
193
+ - test/fixtures/features/step_definitions.rb
194
+ - test/fixtures/hello_world.rb
195
+ - test/fixtures/slow.rb
196
+ - test/fixtures/sync_test.rb
197
+ - test/fixtures/write_file.rb
198
+ - test/fixtures/write_file_alternate_spec.rb
199
+ - test/fixtures/write_file_spec.rb
200
+ - test/fixtures/write_file_with_pending_spec.rb
201
+ - test/master_test.rb
202
+ - test/message_test.rb
203
+ - test/pipe_test.rb
204
+ - test/runner_test.rb
205
+ - test/ssh_test.rb
206
+ - test/sync_test.rb
207
+ - test/test_helper.rb
208
+ - test/worker_test.rb