hudson 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/Changelog.md +3 -0
- data/Gemfile.lock +11 -43
- data/README.md +3 -151
- data/Rakefile +0 -77
- data/bin/hudson +2 -10
- data/hudson.gemspec +2 -12
- data/lib/hudson.rb +1 -8
- data/lib/hudson/version.rb +1 -1
- metadata +8 -203
- data/features/default_host.feature +0 -19
- data/features/development.feature +0 -14
- data/features/launch_server.feature +0 -17
- data/features/listing_jobs.feature +0 -34
- data/features/manage_jobs.feature +0 -207
- data/features/manage_slave_nodes.feature +0 -80
- data/features/step_definitions/common_steps.rb +0 -197
- data/features/step_definitions/fixture_project_steps.rb +0 -8
- data/features/step_definitions/hudson_steps.rb +0 -104
- data/features/step_definitions/scm_steps.rb +0 -12
- data/features/support/common.rb +0 -37
- data/features/support/env.rb +0 -14
- data/features/support/hooks.rb +0 -16
- data/features/support/hudson_helpers.rb +0 -6
- data/features/support/matchers.rb +0 -10
- data/lib/hudson/api.rb +0 -219
- data/lib/hudson/cli.rb +0 -253
- data/lib/hudson/cli/formatting.rb +0 -53
- data/lib/hudson/config.rb +0 -27
- data/lib/hudson/core_ext/hash.rb +0 -9
- data/lib/hudson/core_ext/object/blank.rb +0 -77
- data/lib/hudson/hudson-cli.jar +0 -0
- data/lib/hudson/installation.rb +0 -136
- data/lib/hudson/job_config_builder.rb +0 -287
- data/lib/hudson/project_scm.rb +0 -22
- data/lib/hudson/remote.rb +0 -11
- data/spec/fixtures/ec2_global.config.xml +0 -103
- data/spec/fixtures/rails.multi.config.xml +0 -82
- data/spec/fixtures/rails.single.config.triggers.xml +0 -84
- data/spec/fixtures/rails.single.config.xml +0 -80
- data/spec/fixtures/ruby.multi-ruby-multi-labels.config.xml +0 -84
- data/spec/fixtures/ruby.multi.config.xml +0 -77
- data/spec/fixtures/ruby.single.config.xml +0 -58
- data/spec/fixtures/therubyracer.config.xml +0 -77
- data/spec/hash_key_cleaner_spec.rb +0 -25
- data/spec/job_config_builder_spec.rb +0 -137
- data/spec/spec_helper.rb +0 -15
data/Changelog.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,62 +1,30 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
hudson (0.
|
5
|
-
|
6
|
-
hpricot
|
7
|
-
httparty (~> 0.6.1)
|
8
|
-
term-ansicolor (>= 1.0.4)
|
9
|
-
thor (~> 0.14.2)
|
10
|
-
yajl-ruby (>= 0.7.6)
|
4
|
+
hudson (0.6.0)
|
5
|
+
jenkins
|
11
6
|
|
12
7
|
GEM
|
13
8
|
remote: http://rubygems.org/
|
14
9
|
specs:
|
15
|
-
awesome_print (0.2.1)
|
16
10
|
builder (2.1.2)
|
17
11
|
crack (0.1.8)
|
18
|
-
|
19
|
-
builder (~> 2.1.2)
|
20
|
-
diff-lcs (~> 1.1.2)
|
21
|
-
gherkin (~> 2.2.9)
|
22
|
-
json (~> 1.4.6)
|
23
|
-
term-ansicolor (~> 1.0.5)
|
24
|
-
diff-lcs (1.1.2)
|
25
|
-
gherkin (2.2.9)
|
26
|
-
json (~> 1.4.6)
|
27
|
-
term-ansicolor (~> 1.0.5)
|
28
|
-
hpricot (0.8.2)
|
12
|
+
hpricot (0.8.3)
|
29
13
|
httparty (0.6.1)
|
30
14
|
crack (= 0.1.8)
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
rspec-expectations (2.0.1)
|
39
|
-
diff-lcs (>= 1.1.2)
|
40
|
-
rspec-mocks (2.0.1)
|
41
|
-
rspec-core (~> 2.0.1)
|
42
|
-
rspec-expectations (~> 2.0.1)
|
15
|
+
jenkins (0.6.0)
|
16
|
+
builder (~> 2.1.2)
|
17
|
+
hpricot
|
18
|
+
httparty (~> 0.6.1)
|
19
|
+
term-ansicolor (>= 1.0.4)
|
20
|
+
thor (~> 0.14.2)
|
21
|
+
yajl-ruby (>= 0.7.6)
|
43
22
|
term-ansicolor (1.0.5)
|
44
|
-
thor (0.14.
|
23
|
+
thor (0.14.6)
|
45
24
|
yajl-ruby (0.7.8)
|
46
25
|
|
47
26
|
PLATFORMS
|
48
27
|
ruby
|
49
28
|
|
50
29
|
DEPENDENCIES
|
51
|
-
awesome_print
|
52
|
-
builder (~> 2.1.2)
|
53
|
-
cucumber (~> 0.9.0)
|
54
|
-
hpricot
|
55
|
-
httparty (~> 0.6.1)
|
56
30
|
hudson!
|
57
|
-
json (~> 1.4.0)
|
58
|
-
rake (~> 0.8.7)
|
59
|
-
rspec (~> 2.0.0)
|
60
|
-
term-ansicolor (>= 1.0.4)
|
61
|
-
thor (~> 0.14.2)
|
62
|
-
yajl-ruby (>= 0.7.6)
|
data/README.md
CHANGED
@@ -1,154 +1,6 @@
|
|
1
|
-
Hudson
|
1
|
+
Hudson is now Jenkins
|
2
2
|
======
|
3
3
|
|
4
|
-
|
4
|
+
you can see the new project at http://github.com/cowboyd/jenkins.rb, or:
|
5
5
|
|
6
|
-
|
7
|
-
* IRC: [irc://irc.freenode.net/hudson.rb](irc://irc.freenode.net/hudson.rb)
|
8
|
-
* CI: [http://hudson.thefrontside.net/job/hudson.rb/](http://hudson.thefrontside.net/job/hudson.rb/)
|
9
|
-
|
10
|
-
Install
|
11
|
-
=======
|
12
|
-
|
13
|
-
gem install hudson
|
14
|
-
|
15
|
-
You do not need to download Hudson CI. It is bundled in the RubyGem.
|
16
|
-
|
17
|
-
Example
|
18
|
-
=======
|
19
|
-
|
20
|
-
Hudson.rb is continuously tested using Hudson at [http://hudson.thefrontside.net/job/hudson.rb/](http://hudson.thefrontside.net/job/hudson.rb/).
|
21
|
-
|
22
|
-
The `hudson` application allows you to see the projects/jobs and their statuses:
|
23
|
-
|
24
|
-
$ hudson list --host hudson.thefrontside.net --port 80
|
25
|
-
hudson.rb - http://hudson.thefrontside.net/job/hudson.rb/
|
26
|
-
TheRubyRacer - http://hudson.thefrontside.net/job/TheRubyRacer/
|
27
|
-
|
28
|
-
Alternately use environment variables:
|
29
|
-
|
30
|
-
$ HUDSON_HOST=hudson.thefrontside.net HUDSON_PORT=80 hudson list
|
31
|
-
|
32
|
-
Alternately, it will remember the last Hudson CI master used.
|
33
|
-
|
34
|
-
$ hudson list
|
35
|
-
|
36
|
-
Usage
|
37
|
-
=====
|
38
|
-
|
39
|
-
To run your own Hudson server (by default opens at http://localhost:3001):
|
40
|
-
|
41
|
-
Usage: hudson server [options]
|
42
|
-
-p, --port [3001] run hudson server on this port
|
43
|
-
-c, --control [3002] set the shutdown/control port
|
44
|
-
--daemon fork into background and run as a daemon
|
45
|
-
--logfile [PATH] redirect log messages to this file
|
46
|
-
-k, --kill send shutdown signal to control port
|
47
|
-
--home [/Users/drnic/.hudson/server] use this directory to store server data
|
48
|
-
|
49
|
-
The remaining CLI tasks are for communicating with a running Hudson server; either the one created above or hosted remotely.
|
50
|
-
|
51
|
-
### Jobs
|
52
|
-
|
53
|
-
To list Jobs/Projects on a Hudson server:
|
54
|
-
|
55
|
-
Usage: hudson list [options]
|
56
|
-
|
57
|
-
To add Jobs/Projects (create a Job) on a Hudson server:
|
58
|
-
|
59
|
-
Usage: hudson create PROJECT_PATH [options]
|
60
|
-
--public-scm use public scm URL
|
61
|
-
--template [ruby] template of job steps (available: rails,rails3,ruby,rubygem)
|
62
|
-
--assigned-node [ASSIGNED-NODE] only use slave nodes with this label
|
63
|
-
--override override if job exists
|
64
|
-
--no-build create job without initial build
|
65
|
-
|
66
|
-
To trigger a Job to build:
|
67
|
-
|
68
|
-
Usage: hudson build
|
69
|
-
|
70
|
-
To remove a Job from a Hudson server:
|
71
|
-
|
72
|
-
Usage: hudson remove PROJECT_PATH
|
73
|
-
|
74
|
-
### Slave nodes
|
75
|
-
|
76
|
-
To list slaves on a Hudson server (including itself):
|
77
|
-
|
78
|
-
Usage: hudson nodes
|
79
|
-
|
80
|
-
To add a remote machine/remote VM to a Hudson server as a slave:
|
81
|
-
|
82
|
-
Usage: hudson add_node SLAVE_HOST
|
83
|
-
--slave-port [22] SSH port for Hudson to connect to slave node
|
84
|
-
--label [LABEL] Labels for a job --assigned_node to match against to select a slave. --master-key [MASTER-KEY] Location of master public key or identity file
|
85
|
-
--slave-fs [SLAVE-FS] Location of file system on slave for Hudson to use
|
86
|
-
--name [NAME] Name of slave node (default SLAVE_HOST)
|
87
|
-
--slave-user [deploy] SSH user for Hudson to connect to slave node
|
88
|
-
|
89
|
-
### Selecting a Hudson CI server
|
90
|
-
|
91
|
-
**For all client-side commands, there are `--host` and `--port` options flags.** These are cached after first used, so are only required for the first request to a Hudson CI server. For example:
|
92
|
-
|
93
|
-
hudson create . --host localhost --port 3001
|
94
|
-
hudson list
|
95
|
-
hudson create . --override
|
96
|
-
|
97
|
-
Alternately, `$HUDSON_HOST` and `$HUDSON_PORT` can be provided in lieu of the cached target Hudson CI server
|
98
|
-
|
99
|
-
HUDSON_HOST=localhost HUDSON_PORT=3001 hudson list
|
100
|
-
|
101
|
-
|
102
|
-
Developer Instructions
|
103
|
-
======================
|
104
|
-
|
105
|
-
The dependencies for the gem and for developing the gem are managed by bundler.
|
106
|
-
|
107
|
-
gem install bundler
|
108
|
-
git clone http://github.com/cowboyd/hudson.rb.git
|
109
|
-
bundle install
|
110
|
-
|
111
|
-
The test suite is run with:
|
112
|
-
|
113
|
-
rake
|
114
|
-
|
115
|
-
This launches a Hudson server, runs cucumber features, and kills the Hudson server.
|
116
|
-
|
117
|
-
Alternately, manually launch the Hudson server, run features and close the Hudson server:
|
118
|
-
|
119
|
-
rake hudson:server:test
|
120
|
-
rake cucumber:ok
|
121
|
-
rake hudson:server:killtest
|
122
|
-
|
123
|
-
Contributors
|
124
|
-
============
|
125
|
-
|
126
|
-
* Charles Lowell
|
127
|
-
* Dr Nic Williams
|
128
|
-
* Bo Jeanes
|
129
|
-
|
130
|
-
License
|
131
|
-
=======
|
132
|
-
|
133
|
-
(The MIT License)
|
134
|
-
|
135
|
-
Copyright (c) 2010 Charles Lowell, cowboyd@thefrontside.net
|
136
|
-
|
137
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
138
|
-
a copy of this software and associated documentation files (the
|
139
|
-
'Software'), to deal in the Software without restriction, including
|
140
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
141
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
142
|
-
permit persons to whom the Software is furnished to do so, subject to
|
143
|
-
the following conditions:
|
144
|
-
|
145
|
-
The above copyright notice and this permission notice shall be
|
146
|
-
included in all copies or substantial portions of the Software.
|
147
|
-
|
148
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
149
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
150
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
151
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
152
|
-
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
153
|
-
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
154
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
6
|
+
gem install jenkins
|
data/Rakefile
CHANGED
@@ -1,79 +1,2 @@
|
|
1
1
|
require 'bundler'
|
2
2
|
Bundler::GemHelper.install_tasks
|
3
|
-
|
4
|
-
require "rspec/core/rake_task"
|
5
|
-
RSpec::Core::RakeTask.new(:spec)
|
6
|
-
|
7
|
-
namespace :cucumber do
|
8
|
-
require 'cucumber/rake/task'
|
9
|
-
Cucumber::Rake::Task.new(:wip, 'Run features that are being worked on') do |t|
|
10
|
-
t.cucumber_opts = "--tags @wip"
|
11
|
-
end
|
12
|
-
Cucumber::Rake::Task.new(:ok, 'Run features that should be working') do |t|
|
13
|
-
t.cucumber_opts = "--tags ~@wip"
|
14
|
-
end
|
15
|
-
task :all => [:ok, :wip]
|
16
|
-
end
|
17
|
-
|
18
|
-
desc 'Alias for cucumber:ok'
|
19
|
-
task :cucumber => 'cucumber:ok'
|
20
|
-
|
21
|
-
desc "Start test server; Run cucumber:ok; Kill Test Server;"
|
22
|
-
task :default => [:spec, "hudson:server:killtest", "hudson:server:test"] do
|
23
|
-
require 'socket'
|
24
|
-
require 'net/http'
|
25
|
-
print "waiting for at most 30 seconds for the server to start"
|
26
|
-
tries = 1
|
27
|
-
begin
|
28
|
-
print "."; $stdout.flush
|
29
|
-
tries += 1
|
30
|
-
Net::HTTP.start("localhost", "3010") { |http| http.get('/') }
|
31
|
-
sleep(10)
|
32
|
-
puts ""
|
33
|
-
result = Rake::Task["cucumber:ok"].invoke
|
34
|
-
rescue Exception => e
|
35
|
-
if tries <= 15
|
36
|
-
sleep 2
|
37
|
-
retry
|
38
|
-
end
|
39
|
-
raise
|
40
|
-
ensure
|
41
|
-
Rake::Task["hudson:server:killtest"].tap do |task|
|
42
|
-
task.reenable
|
43
|
-
task.invoke
|
44
|
-
end
|
45
|
-
end
|
46
|
-
raise unless result
|
47
|
-
end
|
48
|
-
|
49
|
-
namespace :hudson do
|
50
|
-
namespace :server do
|
51
|
-
require 'fileutils'
|
52
|
-
|
53
|
-
desc "Run a server for tests"
|
54
|
-
task :test do
|
55
|
-
port = 3010
|
56
|
-
control = 3011
|
57
|
-
ENV['HUDSON_STOCK'] = File.expand_path(File.dirname(__FILE__) + "/fixtures/hudson")
|
58
|
-
FileUtils.chdir(File.dirname(__FILE__)) do
|
59
|
-
logfile = File.join("/tmp", "test_hudson.log")
|
60
|
-
puts "Launching hudson test server at http://localhost:#{port}..."
|
61
|
-
puts " output will be logged to #{logfile}"
|
62
|
-
`ruby bin/hudson server --home /tmp/test_hudson --port #{port} --control #{control} --daemon --logfile #{logfile}`
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
desc "Kill hudson test server if it is running."
|
67
|
-
task :killtest do
|
68
|
-
FileUtils.chdir(File.dirname(__FILE__)) do
|
69
|
-
puts "Killing any running server processes..."
|
70
|
-
`ruby bin/hudson server --control 3011 --kill 2>/dev/null`
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
Dir['tasks/**/*.rake'].each {|f| load f}
|
78
|
-
|
79
|
-
|
data/bin/hudson
CHANGED
@@ -1,11 +1,3 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../lib/hudson')
|
5
|
-
require 'hudson/cli'
|
6
|
-
|
7
|
-
begin
|
8
|
-
Hudson::CLI.start
|
9
|
-
rescue Errno::ECONNREFUSED, Errno::EAFNOSUPPORT
|
10
|
-
Hudson::CLI.new.shell.say "No connection available to the server.", :red
|
11
|
-
end
|
2
|
+
puts "hudson: this gem has been deprecated, and is just a placeholder"
|
3
|
+
puts " please gem install jenkins"
|
data/hudson.gemspec
CHANGED
@@ -14,20 +14,10 @@ Gem::Specification.new do |s|
|
|
14
14
|
|
15
15
|
s.rubyforge_project = "hudson"
|
16
16
|
|
17
|
-
s.files = `git ls-files
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
18
|
|
19
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
20
20
|
s.require_paths = ["lib"]
|
21
21
|
|
22
|
-
s.add_dependency
|
23
|
-
s.add_dependency("yajl-ruby", [">= 0.7.6"])
|
24
|
-
s.add_dependency("httparty", ["~> 0.6.1"])
|
25
|
-
s.add_dependency("builder", ["~> 2.1.2"])
|
26
|
-
s.add_dependency("thor", ["~> 0.14.2"])
|
27
|
-
s.add_dependency("hpricot")
|
28
|
-
s.add_development_dependency("rake", ["~> 0.8.7"])
|
29
|
-
s.add_development_dependency("cucumber", ["~> 0.9.0"])
|
30
|
-
s.add_development_dependency("rspec", ["~> 2.0.0"])
|
31
|
-
s.add_development_dependency("json", ["~>1.4.0"])
|
32
|
-
s.add_development_dependency("awesome_print")
|
22
|
+
s.add_dependency "jenkins"
|
33
23
|
end
|
data/lib/hudson.rb
CHANGED
@@ -1,10 +1,3 @@
|
|
1
1
|
module Hudson
|
2
|
-
|
3
|
-
PLUGINS = File.expand_path(File.dirname(__FILE__) + "/hudson/plugins")
|
2
|
+
require 'hudson/version'
|
4
3
|
end
|
5
|
-
|
6
|
-
require 'hudson/version'
|
7
|
-
require 'hudson/api'
|
8
|
-
require 'hudson/job_config_builder'
|
9
|
-
require 'hudson/project_scm'
|
10
|
-
require 'hudson/installation'
|
data/lib/hudson/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hudson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 7
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 6
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.6.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Charles Lowell
|
@@ -16,93 +16,13 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date:
|
19
|
+
date: 2011-02-10 00:00:00 -06:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
|
-
name:
|
23
|
+
name: jenkins
|
24
24
|
prerelease: false
|
25
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
|
-
requirements:
|
28
|
-
- - ">="
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
hash: 31
|
31
|
-
segments:
|
32
|
-
- 1
|
33
|
-
- 0
|
34
|
-
- 4
|
35
|
-
version: 1.0.4
|
36
|
-
type: :runtime
|
37
|
-
version_requirements: *id001
|
38
|
-
- !ruby/object:Gem::Dependency
|
39
|
-
name: yajl-ruby
|
40
|
-
prerelease: false
|
41
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
|
-
requirements:
|
44
|
-
- - ">="
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
hash: 15
|
47
|
-
segments:
|
48
|
-
- 0
|
49
|
-
- 7
|
50
|
-
- 6
|
51
|
-
version: 0.7.6
|
52
|
-
type: :runtime
|
53
|
-
version_requirements: *id002
|
54
|
-
- !ruby/object:Gem::Dependency
|
55
|
-
name: httparty
|
56
|
-
prerelease: false
|
57
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
58
|
-
none: false
|
59
|
-
requirements:
|
60
|
-
- - ~>
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
hash: 5
|
63
|
-
segments:
|
64
|
-
- 0
|
65
|
-
- 6
|
66
|
-
- 1
|
67
|
-
version: 0.6.1
|
68
|
-
type: :runtime
|
69
|
-
version_requirements: *id003
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name: builder
|
72
|
-
prerelease: false
|
73
|
-
requirement: &id004 !ruby/object:Gem::Requirement
|
74
|
-
none: false
|
75
|
-
requirements:
|
76
|
-
- - ~>
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
hash: 15
|
79
|
-
segments:
|
80
|
-
- 2
|
81
|
-
- 1
|
82
|
-
- 2
|
83
|
-
version: 2.1.2
|
84
|
-
type: :runtime
|
85
|
-
version_requirements: *id004
|
86
|
-
- !ruby/object:Gem::Dependency
|
87
|
-
name: thor
|
88
|
-
prerelease: false
|
89
|
-
requirement: &id005 !ruby/object:Gem::Requirement
|
90
|
-
none: false
|
91
|
-
requirements:
|
92
|
-
- - ~>
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
hash: 35
|
95
|
-
segments:
|
96
|
-
- 0
|
97
|
-
- 14
|
98
|
-
- 2
|
99
|
-
version: 0.14.2
|
100
|
-
type: :runtime
|
101
|
-
version_requirements: *id005
|
102
|
-
- !ruby/object:Gem::Dependency
|
103
|
-
name: hpricot
|
104
|
-
prerelease: false
|
105
|
-
requirement: &id006 !ruby/object:Gem::Requirement
|
106
26
|
none: false
|
107
27
|
requirements:
|
108
28
|
- - ">="
|
@@ -112,85 +32,7 @@ dependencies:
|
|
112
32
|
- 0
|
113
33
|
version: "0"
|
114
34
|
type: :runtime
|
115
|
-
version_requirements: *
|
116
|
-
- !ruby/object:Gem::Dependency
|
117
|
-
name: rake
|
118
|
-
prerelease: false
|
119
|
-
requirement: &id007 !ruby/object:Gem::Requirement
|
120
|
-
none: false
|
121
|
-
requirements:
|
122
|
-
- - ~>
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
hash: 49
|
125
|
-
segments:
|
126
|
-
- 0
|
127
|
-
- 8
|
128
|
-
- 7
|
129
|
-
version: 0.8.7
|
130
|
-
type: :development
|
131
|
-
version_requirements: *id007
|
132
|
-
- !ruby/object:Gem::Dependency
|
133
|
-
name: cucumber
|
134
|
-
prerelease: false
|
135
|
-
requirement: &id008 !ruby/object:Gem::Requirement
|
136
|
-
none: false
|
137
|
-
requirements:
|
138
|
-
- - ~>
|
139
|
-
- !ruby/object:Gem::Version
|
140
|
-
hash: 59
|
141
|
-
segments:
|
142
|
-
- 0
|
143
|
-
- 9
|
144
|
-
- 0
|
145
|
-
version: 0.9.0
|
146
|
-
type: :development
|
147
|
-
version_requirements: *id008
|
148
|
-
- !ruby/object:Gem::Dependency
|
149
|
-
name: rspec
|
150
|
-
prerelease: false
|
151
|
-
requirement: &id009 !ruby/object:Gem::Requirement
|
152
|
-
none: false
|
153
|
-
requirements:
|
154
|
-
- - ~>
|
155
|
-
- !ruby/object:Gem::Version
|
156
|
-
hash: 15
|
157
|
-
segments:
|
158
|
-
- 2
|
159
|
-
- 0
|
160
|
-
- 0
|
161
|
-
version: 2.0.0
|
162
|
-
type: :development
|
163
|
-
version_requirements: *id009
|
164
|
-
- !ruby/object:Gem::Dependency
|
165
|
-
name: json
|
166
|
-
prerelease: false
|
167
|
-
requirement: &id010 !ruby/object:Gem::Requirement
|
168
|
-
none: false
|
169
|
-
requirements:
|
170
|
-
- - ~>
|
171
|
-
- !ruby/object:Gem::Version
|
172
|
-
hash: 7
|
173
|
-
segments:
|
174
|
-
- 1
|
175
|
-
- 4
|
176
|
-
- 0
|
177
|
-
version: 1.4.0
|
178
|
-
type: :development
|
179
|
-
version_requirements: *id010
|
180
|
-
- !ruby/object:Gem::Dependency
|
181
|
-
name: awesome_print
|
182
|
-
prerelease: false
|
183
|
-
requirement: &id011 !ruby/object:Gem::Requirement
|
184
|
-
none: false
|
185
|
-
requirements:
|
186
|
-
- - ">="
|
187
|
-
- !ruby/object:Gem::Version
|
188
|
-
hash: 3
|
189
|
-
segments:
|
190
|
-
- 0
|
191
|
-
version: "0"
|
192
|
-
type: :development
|
193
|
-
version_requirements: *id011
|
35
|
+
version_requirements: *id001
|
194
36
|
description: A suite of utilities for bringing continous integration to your projects (not the other way around) with hudson CI
|
195
37
|
email:
|
196
38
|
- cowboyd@thefrontside.net
|
@@ -209,46 +51,9 @@ files:
|
|
209
51
|
- README.md
|
210
52
|
- Rakefile
|
211
53
|
- bin/hudson
|
212
|
-
- features/default_host.feature
|
213
|
-
- features/development.feature
|
214
|
-
- features/launch_server.feature
|
215
|
-
- features/listing_jobs.feature
|
216
|
-
- features/manage_jobs.feature
|
217
|
-
- features/manage_slave_nodes.feature
|
218
|
-
- features/step_definitions/common_steps.rb
|
219
|
-
- features/step_definitions/fixture_project_steps.rb
|
220
|
-
- features/step_definitions/hudson_steps.rb
|
221
|
-
- features/step_definitions/scm_steps.rb
|
222
|
-
- features/support/common.rb
|
223
|
-
- features/support/env.rb
|
224
|
-
- features/support/hooks.rb
|
225
|
-
- features/support/hudson_helpers.rb
|
226
|
-
- features/support/matchers.rb
|
227
54
|
- hudson.gemspec
|
228
55
|
- lib/hudson.rb
|
229
|
-
- lib/hudson/api.rb
|
230
|
-
- lib/hudson/cli.rb
|
231
|
-
- lib/hudson/cli/formatting.rb
|
232
|
-
- lib/hudson/config.rb
|
233
|
-
- lib/hudson/core_ext/hash.rb
|
234
|
-
- lib/hudson/core_ext/object/blank.rb
|
235
|
-
- lib/hudson/hudson-cli.jar
|
236
|
-
- lib/hudson/installation.rb
|
237
|
-
- lib/hudson/job_config_builder.rb
|
238
|
-
- lib/hudson/project_scm.rb
|
239
|
-
- lib/hudson/remote.rb
|
240
56
|
- lib/hudson/version.rb
|
241
|
-
- spec/fixtures/ec2_global.config.xml
|
242
|
-
- spec/fixtures/rails.multi.config.xml
|
243
|
-
- spec/fixtures/rails.single.config.triggers.xml
|
244
|
-
- spec/fixtures/rails.single.config.xml
|
245
|
-
- spec/fixtures/ruby.multi-ruby-multi-labels.config.xml
|
246
|
-
- spec/fixtures/ruby.multi.config.xml
|
247
|
-
- spec/fixtures/ruby.single.config.xml
|
248
|
-
- spec/fixtures/therubyracer.config.xml
|
249
|
-
- spec/hash_key_cleaner_spec.rb
|
250
|
-
- spec/job_config_builder_spec.rb
|
251
|
-
- spec/spec_helper.rb
|
252
57
|
has_rdoc: true
|
253
58
|
homepage: http://github.com/cowboyd/hudson.rb
|
254
59
|
licenses: []
|
@@ -279,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
279
84
|
requirements: []
|
280
85
|
|
281
86
|
rubyforge_project: hudson
|
282
|
-
rubygems_version: 1.
|
87
|
+
rubygems_version: 1.5.0
|
283
88
|
signing_key:
|
284
89
|
specification_version: 3
|
285
90
|
summary: Painless Continuous Integration with Hudson Server
|