nulogy-hydra 0.23.2.1 → 0.26.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +5 -1
- data/Rakefile +3 -3
- data/VERSION +1 -1
- data/arturop-hydra.gemspec +120 -0
- data/hydra.gemspec +82 -94
- data/justinf-hydra.gemspec +122 -0
- data/lib/hydra/cucumber/partial_html.rb +24 -0
- data/lib/hydra/listener/cucumber.css +279 -0
- data/lib/hydra/listener/cucumber_html_report.rb +148 -0
- data/lib/hydra/listener/jquery-min.js +154 -0
- data/lib/hydra/listener/report_generator.rb +2 -0
- data/lib/hydra/master.rb +2 -5
- data/lib/hydra/runner.rb +41 -35
- data/lib/hydra/tasks.rb +10 -1
- data/lib/hydra/trace.rb +0 -5
- data/lib/hydra/worker.rb +9 -4
- data/nulogy-hydra.gemspec +14 -11
- metadata +56 -92
- data/lib/hydra/threadsafe_io.rb +0 -18
data/README.rdoc
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
= Hydra
|
2
2
|
|
3
|
-
Spread your tests over processors and/or multiple machines to test your code faster.
|
3
|
+
Spread your tests over processors and/or multiple machines to test your code faster.
|
4
|
+
|
5
|
+
Ruby 1.8 and 1.9*
|
6
|
+
|
7
|
+
\* Install gem 'test-unit' if using Ruby 1.9
|
4
8
|
|
5
9
|
== Description
|
6
10
|
|
data/Rakefile
CHANGED
@@ -7,9 +7,9 @@ begin
|
|
7
7
|
gem.name = "nulogy-hydra"
|
8
8
|
gem.summary = %Q{Distributed testing toolkit}
|
9
9
|
gem.description = %Q{Spread your tests over multiple machines to test your code faster.}
|
10
|
-
gem.email = "
|
11
|
-
gem.homepage = "http://github.com/
|
12
|
-
gem.authors = ["Nick Gauthier", "Justin Fitzsimmons", "
|
10
|
+
gem.email = "justin@fitzsimmons.ca"
|
11
|
+
gem.homepage = "http://github.com/Fitzsimmons/hydra"
|
12
|
+
gem.authors = ["Nick Gauthier", "Justin Fitzsimmons", "Arturo Pie"]
|
13
13
|
gem.add_development_dependency "shoulda", "= 2.10.3"
|
14
14
|
gem.add_development_dependency "rspec", "= 2.0.0.beta.19"
|
15
15
|
gem.add_development_dependency "cucumber", "= 0.9.2"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.26.0
|
@@ -0,0 +1,120 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "arturop-hydra"
|
8
|
+
s.version = "0.25.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Nick Gauthier", "Arturo Pie"]
|
12
|
+
s.date = "2012-03-08"
|
13
|
+
s.description = "Spread your tests over multiple machines to test your code faster."
|
14
|
+
s.email = "nick@smartlogicsolutions.com"
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc",
|
18
|
+
"TODO"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"TODO",
|
26
|
+
"VERSION",
|
27
|
+
"arturop-hydra.gemspec",
|
28
|
+
"caliper.yml",
|
29
|
+
"hydra-icon-64x64.png",
|
30
|
+
"hydra.gemspec",
|
31
|
+
"hydra_gray.png",
|
32
|
+
"lib/hydra.rb",
|
33
|
+
"lib/hydra/cucumber/formatter.rb",
|
34
|
+
"lib/hydra/cucumber/partial_html.rb",
|
35
|
+
"lib/hydra/hash.rb",
|
36
|
+
"lib/hydra/js/lint.js",
|
37
|
+
"lib/hydra/listener/abstract.rb",
|
38
|
+
"lib/hydra/listener/cucumber.css",
|
39
|
+
"lib/hydra/listener/cucumber_html_report.rb",
|
40
|
+
"lib/hydra/listener/jquery-min.js",
|
41
|
+
"lib/hydra/listener/minimal_output.rb",
|
42
|
+
"lib/hydra/listener/notifier.rb",
|
43
|
+
"lib/hydra/listener/progress_bar.rb",
|
44
|
+
"lib/hydra/listener/report_generator.rb",
|
45
|
+
"lib/hydra/master.rb",
|
46
|
+
"lib/hydra/message.rb",
|
47
|
+
"lib/hydra/message/master_messages.rb",
|
48
|
+
"lib/hydra/message/runner_messages.rb",
|
49
|
+
"lib/hydra/message/worker_messages.rb",
|
50
|
+
"lib/hydra/messaging_io.rb",
|
51
|
+
"lib/hydra/pipe.rb",
|
52
|
+
"lib/hydra/runner.rb",
|
53
|
+
"lib/hydra/runner_listener/abstract.rb",
|
54
|
+
"lib/hydra/safe_fork.rb",
|
55
|
+
"lib/hydra/spec/autorun_override.rb",
|
56
|
+
"lib/hydra/spec/hydra_formatter.rb",
|
57
|
+
"lib/hydra/ssh.rb",
|
58
|
+
"lib/hydra/stdio.rb",
|
59
|
+
"lib/hydra/sync.rb",
|
60
|
+
"lib/hydra/tasks.rb",
|
61
|
+
"lib/hydra/tmpdir.rb",
|
62
|
+
"lib/hydra/trace.rb",
|
63
|
+
"lib/hydra/worker.rb",
|
64
|
+
"test/fixtures/assert_true.rb",
|
65
|
+
"test/fixtures/config.yml",
|
66
|
+
"test/fixtures/conflicting.rb",
|
67
|
+
"test/fixtures/features/step_definitions.rb",
|
68
|
+
"test/fixtures/features/write_alternate_file.feature",
|
69
|
+
"test/fixtures/features/write_file.feature",
|
70
|
+
"test/fixtures/hello_world.rb",
|
71
|
+
"test/fixtures/hydra_worker_init.rb",
|
72
|
+
"test/fixtures/js_file.js",
|
73
|
+
"test/fixtures/json_data.json",
|
74
|
+
"test/fixtures/many_outputs_to_console.rb",
|
75
|
+
"test/fixtures/master_listeners.rb",
|
76
|
+
"test/fixtures/runner_listeners.rb",
|
77
|
+
"test/fixtures/slow.rb",
|
78
|
+
"test/fixtures/sync_test.rb",
|
79
|
+
"test/fixtures/task_test_config.yml",
|
80
|
+
"test/fixtures/write_file.rb",
|
81
|
+
"test/fixtures/write_file_alternate_spec.rb",
|
82
|
+
"test/fixtures/write_file_spec.rb",
|
83
|
+
"test/fixtures/write_file_with_pending_spec.rb",
|
84
|
+
"test/master_test.rb",
|
85
|
+
"test/message_test.rb",
|
86
|
+
"test/pipe_test.rb",
|
87
|
+
"test/runner_test.rb",
|
88
|
+
"test/ssh_test.rb",
|
89
|
+
"test/sync_test.rb",
|
90
|
+
"test/task_test.rb",
|
91
|
+
"test/test_helper.rb",
|
92
|
+
"test/worker_test.rb"
|
93
|
+
]
|
94
|
+
s.homepage = "https://github.com/arturopie/hydra"
|
95
|
+
s.require_paths = ["lib"]
|
96
|
+
s.rubygems_version = "1.8.15"
|
97
|
+
s.summary = "Distributed testing toolkit"
|
98
|
+
|
99
|
+
if s.respond_to? :specification_version then
|
100
|
+
s.specification_version = 3
|
101
|
+
|
102
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
103
|
+
s.add_development_dependency(%q<shoulda>, ["= 2.10.3"])
|
104
|
+
s.add_development_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
105
|
+
s.add_development_dependency(%q<cucumber>, ["= 0.9.2"])
|
106
|
+
s.add_development_dependency(%q<therubyracer>, ["= 0.7.4"])
|
107
|
+
else
|
108
|
+
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
109
|
+
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
110
|
+
s.add_dependency(%q<cucumber>, ["= 0.9.2"])
|
111
|
+
s.add_dependency(%q<therubyracer>, ["= 0.7.4"])
|
112
|
+
end
|
113
|
+
else
|
114
|
+
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
115
|
+
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
116
|
+
s.add_dependency(%q<cucumber>, ["= 0.9.2"])
|
117
|
+
s.add_dependency(%q<therubyracer>, ["= 0.7.4"])
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
data/hydra.gemspec
CHANGED
@@ -1,113 +1,101 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "0.23.
|
7
|
+
s.name = "hydra"
|
8
|
+
s.version = "0.23.4"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = ["Nick Gauthier"]
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
11
|
+
s.authors = ["Nick Gauthier", "Arturo Pie"]
|
12
|
+
s.date = "2012-03-08"
|
13
|
+
s.description = "Spread your tests over multiple machines to test your code faster."
|
14
|
+
s.email = "nick@smartlogicsolutions.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
18
|
-
|
17
|
+
"README.rdoc",
|
18
|
+
"TODO"
|
19
19
|
]
|
20
20
|
s.files = [
|
21
21
|
".document",
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
s.require_paths = ["lib"]
|
86
|
-
s.rubygems_version = %q{1.3.7}
|
87
|
-
s.summary = %q{Distributed testing toolkit}
|
88
|
-
s.test_files = [
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"TODO",
|
26
|
+
"VERSION",
|
27
|
+
"caliper.yml",
|
28
|
+
"hydra-icon-64x64.png",
|
29
|
+
"hydra.gemspec",
|
30
|
+
"hydra_gray.png",
|
31
|
+
"lib/hydra.rb",
|
32
|
+
"lib/hydra/cucumber/formatter.rb",
|
33
|
+
"lib/hydra/cucumber/partial_html.rb",
|
34
|
+
"lib/hydra/hash.rb",
|
35
|
+
"lib/hydra/js/lint.js",
|
36
|
+
"lib/hydra/listener/abstract.rb",
|
37
|
+
"lib/hydra/listener/cucumber.css",
|
38
|
+
"lib/hydra/listener/cucumber_html_report.rb",
|
39
|
+
"lib/hydra/listener/jquery-min.js",
|
40
|
+
"lib/hydra/listener/minimal_output.rb",
|
41
|
+
"lib/hydra/listener/notifier.rb",
|
42
|
+
"lib/hydra/listener/progress_bar.rb",
|
43
|
+
"lib/hydra/listener/report_generator.rb",
|
44
|
+
"lib/hydra/master.rb",
|
45
|
+
"lib/hydra/message.rb",
|
46
|
+
"lib/hydra/message/master_messages.rb",
|
47
|
+
"lib/hydra/message/runner_messages.rb",
|
48
|
+
"lib/hydra/message/worker_messages.rb",
|
49
|
+
"lib/hydra/messaging_io.rb",
|
50
|
+
"lib/hydra/pipe.rb",
|
51
|
+
"lib/hydra/runner.rb",
|
52
|
+
"lib/hydra/runner_listener/abstract.rb",
|
53
|
+
"lib/hydra/safe_fork.rb",
|
54
|
+
"lib/hydra/spec/autorun_override.rb",
|
55
|
+
"lib/hydra/spec/hydra_formatter.rb",
|
56
|
+
"lib/hydra/ssh.rb",
|
57
|
+
"lib/hydra/stdio.rb",
|
58
|
+
"lib/hydra/sync.rb",
|
59
|
+
"lib/hydra/tasks.rb",
|
60
|
+
"lib/hydra/tmpdir.rb",
|
61
|
+
"lib/hydra/trace.rb",
|
62
|
+
"lib/hydra/worker.rb",
|
63
|
+
"test/fixtures/assert_true.rb",
|
64
|
+
"test/fixtures/config.yml",
|
65
|
+
"test/fixtures/conflicting.rb",
|
66
|
+
"test/fixtures/features/step_definitions.rb",
|
67
|
+
"test/fixtures/features/write_alternate_file.feature",
|
68
|
+
"test/fixtures/features/write_file.feature",
|
69
|
+
"test/fixtures/hello_world.rb",
|
70
|
+
"test/fixtures/hydra_worker_init.rb",
|
71
|
+
"test/fixtures/js_file.js",
|
72
|
+
"test/fixtures/json_data.json",
|
73
|
+
"test/fixtures/many_outputs_to_console.rb",
|
74
|
+
"test/fixtures/master_listeners.rb",
|
75
|
+
"test/fixtures/runner_listeners.rb",
|
76
|
+
"test/fixtures/slow.rb",
|
77
|
+
"test/fixtures/sync_test.rb",
|
78
|
+
"test/fixtures/task_test_config.yml",
|
79
|
+
"test/fixtures/write_file.rb",
|
80
|
+
"test/fixtures/write_file_alternate_spec.rb",
|
81
|
+
"test/fixtures/write_file_spec.rb",
|
82
|
+
"test/fixtures/write_file_with_pending_spec.rb",
|
83
|
+
"test/master_test.rb",
|
84
|
+
"test/message_test.rb",
|
89
85
|
"test/pipe_test.rb",
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
"test/fixtures/assert_true.rb",
|
97
|
-
"test/fixtures/slow.rb",
|
98
|
-
"test/fixtures/write_file_spec.rb",
|
99
|
-
"test/fixtures/conflicting.rb",
|
100
|
-
"test/fixtures/write_file_with_pending_spec.rb",
|
101
|
-
"test/fixtures/write_file.rb",
|
102
|
-
"test/message_test.rb",
|
103
|
-
"test/test_helper.rb",
|
104
|
-
"test/master_test.rb",
|
105
|
-
"test/runner_test.rb",
|
106
|
-
"test/worker_test.rb"
|
86
|
+
"test/runner_test.rb",
|
87
|
+
"test/ssh_test.rb",
|
88
|
+
"test/sync_test.rb",
|
89
|
+
"test/task_test.rb",
|
90
|
+
"test/test_helper.rb",
|
91
|
+
"test/worker_test.rb"
|
107
92
|
]
|
93
|
+
s.homepage = "https://github.com/arturopie/hydra"
|
94
|
+
s.require_paths = ["lib"]
|
95
|
+
s.rubygems_version = "1.8.15"
|
96
|
+
s.summary = "Distributed testing toolkit"
|
108
97
|
|
109
98
|
if s.respond_to? :specification_version then
|
110
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
111
99
|
s.specification_version = 3
|
112
100
|
|
113
101
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
@@ -0,0 +1,122 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{justinf-hydra}
|
8
|
+
s.version = "0.23.6"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Nick Gauthier", "Justin Fitzsimmons"]
|
12
|
+
s.date = %q{2011-07-08}
|
13
|
+
s.description = %q{Spread your tests over multiple machines to test your code faster.}
|
14
|
+
s.email = %q{justin@fitzsimmons.ca}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc",
|
18
|
+
"TODO"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"TODO",
|
26
|
+
"VERSION",
|
27
|
+
"caliper.yml",
|
28
|
+
"hydra-icon-64x64.png",
|
29
|
+
"hydra.gemspec",
|
30
|
+
"hydra_gray.png",
|
31
|
+
"justinf-hydra.gemspec",
|
32
|
+
"lib/hydra.rb",
|
33
|
+
"lib/hydra/cucumber/formatter.rb",
|
34
|
+
"lib/hydra/hash.rb",
|
35
|
+
"lib/hydra/js/lint.js",
|
36
|
+
"lib/hydra/listener/abstract.rb",
|
37
|
+
"lib/hydra/listener/minimal_output.rb",
|
38
|
+
"lib/hydra/listener/notifier.rb",
|
39
|
+
"lib/hydra/listener/progress_bar.rb",
|
40
|
+
"lib/hydra/listener/report_generator.rb",
|
41
|
+
"lib/hydra/master.rb",
|
42
|
+
"lib/hydra/message.rb",
|
43
|
+
"lib/hydra/message/master_messages.rb",
|
44
|
+
"lib/hydra/message/runner_messages.rb",
|
45
|
+
"lib/hydra/message/worker_messages.rb",
|
46
|
+
"lib/hydra/messaging_io.rb",
|
47
|
+
"lib/hydra/pipe.rb",
|
48
|
+
"lib/hydra/proxy_config.rb",
|
49
|
+
"lib/hydra/runner.rb",
|
50
|
+
"lib/hydra/runner_listener/abstract.rb",
|
51
|
+
"lib/hydra/safe_fork.rb",
|
52
|
+
"lib/hydra/spec/autorun_override.rb",
|
53
|
+
"lib/hydra/spec/hydra_formatter.rb",
|
54
|
+
"lib/hydra/ssh.rb",
|
55
|
+
"lib/hydra/stdio.rb",
|
56
|
+
"lib/hydra/sync.rb",
|
57
|
+
"lib/hydra/tasks.rb",
|
58
|
+
"lib/hydra/tmpdir.rb",
|
59
|
+
"lib/hydra/trace.rb",
|
60
|
+
"lib/hydra/worker.rb",
|
61
|
+
"test/fixtures/assert_true.rb",
|
62
|
+
"test/fixtures/bad_proxy_config.yml",
|
63
|
+
"test/fixtures/config.yml",
|
64
|
+
"test/fixtures/conflicting.rb",
|
65
|
+
"test/fixtures/features/step_definitions.rb",
|
66
|
+
"test/fixtures/features/write_alternate_file.feature",
|
67
|
+
"test/fixtures/features/write_file.feature",
|
68
|
+
"test/fixtures/hello_world.rb",
|
69
|
+
"test/fixtures/hydra_worker_init.rb",
|
70
|
+
"test/fixtures/js_file.js",
|
71
|
+
"test/fixtures/json_data.json",
|
72
|
+
"test/fixtures/many_outputs_to_console.rb",
|
73
|
+
"test/fixtures/master_listeners.rb",
|
74
|
+
"test/fixtures/proxy_config.yml",
|
75
|
+
"test/fixtures/proxy_config_http.yml",
|
76
|
+
"test/fixtures/runner_listeners.rb",
|
77
|
+
"test/fixtures/slow.rb",
|
78
|
+
"test/fixtures/sync_test.rb",
|
79
|
+
"test/fixtures/task_test_config.yml",
|
80
|
+
"test/fixtures/write_file.rb",
|
81
|
+
"test/fixtures/write_file_alternate_spec.rb",
|
82
|
+
"test/fixtures/write_file_spec.rb",
|
83
|
+
"test/fixtures/write_file_with_pending_spec.rb",
|
84
|
+
"test/master_test.rb",
|
85
|
+
"test/message_test.rb",
|
86
|
+
"test/pipe_test.rb",
|
87
|
+
"test/proxy_config_test.rb",
|
88
|
+
"test/runner_test.rb",
|
89
|
+
"test/ssh_test.rb",
|
90
|
+
"test/sync_test.rb",
|
91
|
+
"test/task_test.rb",
|
92
|
+
"test/test_helper.rb",
|
93
|
+
"test/worker_test.rb"
|
94
|
+
]
|
95
|
+
s.homepage = %q{http://github.com/Fitzsimmons/hydra}
|
96
|
+
s.require_paths = ["lib"]
|
97
|
+
s.rubygems_version = %q{1.3.7}
|
98
|
+
s.summary = %q{Distributed testing toolkit}
|
99
|
+
|
100
|
+
if s.respond_to? :specification_version then
|
101
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
102
|
+
s.specification_version = 3
|
103
|
+
|
104
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
105
|
+
s.add_development_dependency(%q<shoulda>, ["= 2.10.3"])
|
106
|
+
s.add_development_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
107
|
+
s.add_development_dependency(%q<cucumber>, ["= 0.9.2"])
|
108
|
+
s.add_development_dependency(%q<therubyracer>, ["= 0.7.4"])
|
109
|
+
else
|
110
|
+
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
111
|
+
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
112
|
+
s.add_dependency(%q<cucumber>, ["= 0.9.2"])
|
113
|
+
s.add_dependency(%q<therubyracer>, ["= 0.7.4"])
|
114
|
+
end
|
115
|
+
else
|
116
|
+
s.add_dependency(%q<shoulda>, ["= 2.10.3"])
|
117
|
+
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
118
|
+
s.add_dependency(%q<cucumber>, ["= 0.9.2"])
|
119
|
+
s.add_dependency(%q<therubyracer>, ["= 0.7.4"])
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|