sskirby-hydra 0.17.1 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
data/hydra.gemspec DELETED
@@ -1,122 +0,0 @@
1
- # Generated by jeweler
2
- # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
- # -*- encoding: utf-8 -*-
5
-
6
- Gem::Specification.new do |s|
7
- s.name = %q{hydra}
8
- s.version = "0.17.0"
9
-
10
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.authors = ["Nick Gauthier"]
12
- s.date = %q{2010-05-10}
13
- s.description = %q{Spread your tests over multiple machines to test your code faster.}
14
- s.email = %q{nick@smartlogicsolutions.com}
15
- s.extra_rdoc_files = [
16
- "LICENSE",
17
- "README.rdoc",
18
- "TODO"
19
- ]
20
- s.files = [
21
- ".document",
22
- ".gitignore",
23
- "LICENSE",
24
- "README.rdoc",
25
- "Rakefile",
26
- "TODO",
27
- "VERSION",
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/hash.rb",
35
- "lib/hydra/listener/abstract.rb",
36
- "lib/hydra/listener/minimal_output.rb",
37
- "lib/hydra/listener/notifier.rb",
38
- "lib/hydra/listener/progress_bar.rb",
39
- "lib/hydra/listener/report_generator.rb",
40
- "lib/hydra/master.rb",
41
- "lib/hydra/message.rb",
42
- "lib/hydra/message/master_messages.rb",
43
- "lib/hydra/message/runner_messages.rb",
44
- "lib/hydra/message/worker_messages.rb",
45
- "lib/hydra/messaging_io.rb",
46
- "lib/hydra/pipe.rb",
47
- "lib/hydra/runner.rb",
48
- "lib/hydra/safe_fork.rb",
49
- "lib/hydra/spec/autorun_override.rb",
50
- "lib/hydra/spec/hydra_formatter.rb",
51
- "lib/hydra/ssh.rb",
52
- "lib/hydra/stdio.rb",
53
- "lib/hydra/sync.rb",
54
- "lib/hydra/tasks.rb",
55
- "lib/hydra/trace.rb",
56
- "lib/hydra/worker.rb",
57
- "test/fixtures/assert_true.rb",
58
- "test/fixtures/config.yml",
59
- "test/fixtures/features/step_definitions.rb",
60
- "test/fixtures/features/write_alternate_file.feature",
61
- "test/fixtures/features/write_file.feature",
62
- "test/fixtures/hello_world.rb",
63
- "test/fixtures/slow.rb",
64
- "test/fixtures/sync_test.rb",
65
- "test/fixtures/write_file.rb",
66
- "test/fixtures/write_file_alternate_spec.rb",
67
- "test/fixtures/write_file_spec.rb",
68
- "test/fixtures/write_file_with_pending_spec.rb",
69
- "test/master_test.rb",
70
- "test/message_test.rb",
71
- "test/pipe_test.rb",
72
- "test/runner_test.rb",
73
- "test/ssh_test.rb",
74
- "test/sync_test.rb",
75
- "test/test_helper.rb",
76
- "test/worker_test.rb"
77
- ]
78
- s.homepage = %q{http://github.com/ngauthier/hydra}
79
- s.rdoc_options = ["--charset=UTF-8"]
80
- s.require_paths = ["lib"]
81
- s.rubygems_version = %q{1.3.6}
82
- s.summary = %q{Distributed testing toolkit}
83
- s.test_files = [
84
- "test/pipe_test.rb",
85
- "test/ssh_test.rb",
86
- "test/fixtures/write_file_alternate_spec.rb",
87
- "test/fixtures/sync_test.rb",
88
- "test/fixtures/hello_world.rb",
89
- "test/fixtures/features/step_definitions.rb",
90
- "test/fixtures/assert_true.rb",
91
- "test/fixtures/slow.rb",
92
- "test/fixtures/write_file_spec.rb",
93
- "test/fixtures/write_file_with_pending_spec.rb",
94
- "test/fixtures/write_file.rb",
95
- "test/message_test.rb",
96
- "test/test_helper.rb",
97
- "test/master_test.rb",
98
- "test/runner_test.rb",
99
- "test/sync_test.rb",
100
- "test/worker_test.rb"
101
- ]
102
-
103
- if s.respond_to? :specification_version then
104
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
105
- s.specification_version = 3
106
-
107
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
108
- s.add_development_dependency(%q<shoulda>, ["= 2.10.3"])
109
- s.add_development_dependency(%q<rspec>, ["= 1.3.0"])
110
- s.add_development_dependency(%q<cucumber>, ["= 0.7.2"])
111
- else
112
- s.add_dependency(%q<shoulda>, ["= 2.10.3"])
113
- s.add_dependency(%q<rspec>, ["= 1.3.0"])
114
- s.add_dependency(%q<cucumber>, ["= 0.7.2"])
115
- end
116
- else
117
- s.add_dependency(%q<shoulda>, ["= 2.10.3"])
118
- s.add_dependency(%q<rspec>, ["= 1.3.0"])
119
- s.add_dependency(%q<cucumber>, ["= 0.7.2"])
120
- end
121
- end
122
-