hudson 0.3.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Changelog.md +24 -0
- data/Gemfile.lock +1 -1
- data/Rakefile +4 -50
- data/features/default_host.feature +19 -0
- data/features/development.feature +2 -2
- data/features/launch_server.feature +1 -0
- data/features/manage_jobs.feature +109 -1
- data/features/manage_slave_nodes.feature +39 -4
- data/features/step_definitions/common_steps.rb +6 -0
- data/features/step_definitions/hudson_steps.rb +13 -2
- data/features/support/hudson_helpers.rb +6 -0
- data/hudson.gemspec +26 -56
- data/lib/hudson.rb +1 -1
- data/lib/hudson/api.rb +38 -24
- data/lib/hudson/cli.rb +81 -49
- data/lib/hudson/installation.rb +136 -0
- data/lib/hudson/job_config_builder.rb +68 -21
- data/lib/hudson/project_scm.rb +3 -3
- data/lib/hudson/version.rb +1 -1
- data/spec/fixtures/rails.single.config.xml +1 -0
- data/spec/fixtures/ruby.multi-ruby-multi-labels.config.xml +84 -0
- data/spec/fixtures/{rubygem.config.xml → ruby.multi.config.xml} +18 -1
- data/spec/job_config_builder_spec.rb +47 -11
- metadata +41 -93
- data/fixtures/projects/non-bundler/Rakefile +0 -4
- data/fixtures/projects/rails-3/Gemfile +0 -30
- data/fixtures/projects/rails-3/Gemfile.lock +0 -74
- data/fixtures/projects/rails-3/README +0 -256
- data/fixtures/projects/rails-3/Rakefile +0 -7
- data/fixtures/projects/rails-3/app/controllers/application_controller.rb +0 -3
- data/fixtures/projects/rails-3/app/helpers/application_helper.rb +0 -2
- data/fixtures/projects/rails-3/app/views/layouts/application.html.erb +0 -14
- data/fixtures/projects/rails-3/config.ru +0 -4
- data/fixtures/projects/rails-3/config/application.rb +0 -42
- data/fixtures/projects/rails-3/config/boot.rb +0 -13
- data/fixtures/projects/rails-3/config/database.yml +0 -22
- data/fixtures/projects/rails-3/config/environment.rb +0 -5
- data/fixtures/projects/rails-3/config/environments/development.rb +0 -26
- data/fixtures/projects/rails-3/config/environments/production.rb +0 -49
- data/fixtures/projects/rails-3/config/environments/test.rb +0 -35
- data/fixtures/projects/rails-3/config/initializers/backtrace_silencers.rb +0 -7
- data/fixtures/projects/rails-3/config/initializers/inflections.rb +0 -10
- data/fixtures/projects/rails-3/config/initializers/mime_types.rb +0 -5
- data/fixtures/projects/rails-3/config/initializers/secret_token.rb +0 -7
- data/fixtures/projects/rails-3/config/initializers/session_store.rb +0 -8
- data/fixtures/projects/rails-3/config/locales/en.yml +0 -5
- data/fixtures/projects/rails-3/config/routes.rb +0 -58
- data/fixtures/projects/rails-3/db/seeds.rb +0 -7
- data/fixtures/projects/rails-3/doc/README_FOR_APP +0 -2
- data/fixtures/projects/rails-3/log/development.log +0 -0
- data/fixtures/projects/rails-3/log/production.log +0 -0
- data/fixtures/projects/rails-3/log/server.log +0 -0
- data/fixtures/projects/rails-3/log/test.log +0 -0
- data/fixtures/projects/rails-3/public/404.html +0 -26
- data/fixtures/projects/rails-3/public/422.html +0 -26
- data/fixtures/projects/rails-3/public/500.html +0 -26
- data/fixtures/projects/rails-3/public/favicon.ico +0 -0
- data/fixtures/projects/rails-3/public/images/rails.png +0 -0
- data/fixtures/projects/rails-3/public/index.html +0 -239
- data/fixtures/projects/rails-3/public/javascripts/application.js +0 -2
- data/fixtures/projects/rails-3/public/javascripts/controls.js +0 -965
- data/fixtures/projects/rails-3/public/javascripts/dragdrop.js +0 -974
- data/fixtures/projects/rails-3/public/javascripts/effects.js +0 -1123
- data/fixtures/projects/rails-3/public/javascripts/prototype.js +0 -6001
- data/fixtures/projects/rails-3/public/javascripts/rails.js +0 -175
- data/fixtures/projects/rails-3/public/robots.txt +0 -5
- data/fixtures/projects/rails-3/script/rails +0 -6
- data/fixtures/projects/rails-3/test/performance/browsing_test.rb +0 -9
- data/fixtures/projects/rails-3/test/test_helper.rb +0 -13
- data/fixtures/projects/ruby/Gemfile +0 -3
- data/fixtures/projects/ruby/Gemfile.lock +0 -10
- data/fixtures/projects/ruby/Rakefile +0 -4
- data/lib/hudson/hudson.war +0 -0
- data/lib/hudson/hudson_version.rb +0 -4
- data/lib/hudson/plugins/envfile.hpi +0 -0
- data/lib/hudson/plugins/git.hpi +0 -0
- data/lib/hudson/plugins/github.hpi +0 -0
- data/lib/hudson/plugins/greenballs.hpi +0 -0
- data/lib/hudson/plugins/rake.hpi +0 -0
- data/lib/hudson/plugins/ruby.hpi +0 -0
- data/tasks/upgrade.rake +0 -83
data/lib/hudson/project_scm.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
module Hudson
|
2
2
|
class ProjectScm
|
3
3
|
|
4
|
-
def self.discover
|
5
|
-
ProjectScmGit.new if File.exist?(".git") && File.directory?(".git")
|
4
|
+
def self.discover(scm)
|
5
|
+
ProjectScmGit.new(scm) if File.exist?(".git") && File.directory?(".git")
|
6
6
|
end
|
7
7
|
|
8
8
|
def self.supported
|
@@ -12,7 +12,7 @@ module Hudson
|
|
12
12
|
|
13
13
|
class ProjectScmGit < ProjectScm
|
14
14
|
def initialize(url = nil)
|
15
|
-
@url =
|
15
|
+
@url = url
|
16
16
|
end
|
17
17
|
|
18
18
|
def url
|
data/lib/hudson/version.rb
CHANGED
@@ -0,0 +1,84 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<matrix-project>
|
3
|
+
<actions/>
|
4
|
+
<description/>
|
5
|
+
<keepDependencies>false</keepDependencies>
|
6
|
+
<properties/>
|
7
|
+
<scm class="hudson.plugins.git.GitSCM">
|
8
|
+
<configVersion>1</configVersion>
|
9
|
+
<remoteRepositories>
|
10
|
+
<org.spearce.jgit.transport.RemoteConfig>
|
11
|
+
<string>origin</string>
|
12
|
+
<int>5</int>
|
13
|
+
<string>fetch</string>
|
14
|
+
<string>+refs/heads/*:refs/remotes/origin/*</string>
|
15
|
+
<string>receivepack</string>
|
16
|
+
<string>git-upload-pack</string>
|
17
|
+
<string>uploadpack</string>
|
18
|
+
<string>git-upload-pack</string>
|
19
|
+
<string>url</string>
|
20
|
+
<string>http://github.com/drnic/picasa_plucker.git</string>
|
21
|
+
<string>tagopt</string>
|
22
|
+
<string/>
|
23
|
+
</org.spearce.jgit.transport.RemoteConfig>
|
24
|
+
</remoteRepositories>
|
25
|
+
<branches>
|
26
|
+
<hudson.plugins.git.BranchSpec>
|
27
|
+
<name>master</name>
|
28
|
+
</hudson.plugins.git.BranchSpec>
|
29
|
+
</branches>
|
30
|
+
<localBranch/>
|
31
|
+
<mergeOptions/>
|
32
|
+
<recursiveSubmodules>false</recursiveSubmodules>
|
33
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
34
|
+
<authorOrCommitter>false</authorOrCommitter>
|
35
|
+
<clean>false</clean>
|
36
|
+
<wipeOutWorkspace>false</wipeOutWorkspace>
|
37
|
+
<buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
|
38
|
+
<gitTool>Default</gitTool>
|
39
|
+
<submoduleCfg class="list"/>
|
40
|
+
<relativeTargetDir/>
|
41
|
+
<excludedRegions/>
|
42
|
+
<excludedUsers/>
|
43
|
+
</scm>
|
44
|
+
<canRoam>true</canRoam>
|
45
|
+
<disabled>false</disabled>
|
46
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
47
|
+
<triggers class="vector"/>
|
48
|
+
<concurrentBuild>false</concurrentBuild>
|
49
|
+
<axes>
|
50
|
+
<hudson.matrix.TextAxis>
|
51
|
+
<name>RUBY_VERSION</name>
|
52
|
+
<values>
|
53
|
+
<string>1.8.7</string>
|
54
|
+
<string>1.9.2</string>
|
55
|
+
<string>rbx-head</string>
|
56
|
+
<string>jruby</string>
|
57
|
+
</values>
|
58
|
+
</hudson.matrix.TextAxis>
|
59
|
+
<hudson.matrix.LabelAxis>
|
60
|
+
<name>label</name>
|
61
|
+
<values>
|
62
|
+
<string>1.8.7</string>
|
63
|
+
<string>ubuntu</string>
|
64
|
+
</values>
|
65
|
+
</hudson.matrix.LabelAxis>
|
66
|
+
</axes>
|
67
|
+
<builders>
|
68
|
+
<hudson.tasks.Shell>
|
69
|
+
<command>rvm $RUBY_VERSION</command>
|
70
|
+
</hudson.tasks.Shell>
|
71
|
+
<hudson.tasks.Shell>
|
72
|
+
<command>rvm gemset create ruby-$RUBY_VERSION && rvm gemset use ruby-$RUBY_VERSION</command>
|
73
|
+
</hudson.tasks.Shell>
|
74
|
+
<hudson.tasks.Shell>
|
75
|
+
<command>bundle install</command>
|
76
|
+
</hudson.tasks.Shell>
|
77
|
+
<hudson.tasks.Shell>
|
78
|
+
<command>bundle exec rake</command>
|
79
|
+
</hudson.tasks.Shell>
|
80
|
+
</builders>
|
81
|
+
<publishers/>
|
82
|
+
<buildWrappers/>
|
83
|
+
<runSequentially>false</runSequentially>
|
84
|
+
</matrix-project>
|
@@ -44,9 +44,26 @@
|
|
44
44
|
<canRoam>true</canRoam>
|
45
45
|
<disabled>false</disabled>
|
46
46
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
47
|
+
<triggers class="vector"/>
|
47
48
|
<concurrentBuild>false</concurrentBuild>
|
48
|
-
<axes
|
49
|
+
<axes>
|
50
|
+
<hudson.matrix.TextAxis>
|
51
|
+
<name>RUBY_VERSION</name>
|
52
|
+
<values>
|
53
|
+
<string>1.8.7</string>
|
54
|
+
<string>1.9.2</string>
|
55
|
+
<string>rbx-head</string>
|
56
|
+
<string>jruby</string>
|
57
|
+
</values>
|
58
|
+
</hudson.matrix.TextAxis>
|
59
|
+
</axes>
|
49
60
|
<builders>
|
61
|
+
<hudson.tasks.Shell>
|
62
|
+
<command>rvm $RUBY_VERSION</command>
|
63
|
+
</hudson.tasks.Shell>
|
64
|
+
<hudson.tasks.Shell>
|
65
|
+
<command>rvm gemset create ruby-$RUBY_VERSION && rvm gemset use ruby-$RUBY_VERSION</command>
|
66
|
+
</hudson.tasks.Shell>
|
50
67
|
<hudson.tasks.Shell>
|
51
68
|
<command>bundle install</command>
|
52
69
|
</hudson.tasks.Shell>
|
@@ -33,14 +33,20 @@ describe Hudson::JobConfigBuilder do
|
|
33
33
|
|
34
34
|
|
35
35
|
|
36
|
-
describe "
|
36
|
+
describe "many rubies" do
|
37
37
|
before do
|
38
|
-
@config = Hudson::JobConfigBuilder.new(:
|
38
|
+
@config = Hudson::JobConfigBuilder.new(:ruby) do |c|
|
39
39
|
c.scm = "http://github.com/drnic/picasa_plucker.git"
|
40
|
+
c.rubies = %w[1.8.7 1.9.2 rbx-head jruby]
|
40
41
|
end
|
41
42
|
end
|
42
|
-
it "
|
43
|
-
config_xml("
|
43
|
+
it "have have explicit rubies" do
|
44
|
+
config_xml("ruby", "multi").should == @config.to_xml
|
45
|
+
end
|
46
|
+
|
47
|
+
it "and many labels/assigned_nodes" do
|
48
|
+
@config.node_labels = %w[1.8.7 ubuntu]
|
49
|
+
config_xml("ruby", "multi-ruby-multi-labels").should == @config.to_xml
|
44
50
|
end
|
45
51
|
end
|
46
52
|
|
@@ -67,15 +73,45 @@ describe Hudson::JobConfigBuilder do
|
|
67
73
|
end
|
68
74
|
end
|
69
75
|
|
70
|
-
describe "
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
76
|
+
describe "SCM behaviour" do
|
77
|
+
describe "#public_scm = true => convert git@ into git:// until we have deploy keys" do
|
78
|
+
before do
|
79
|
+
@config = Hudson::JobConfigBuilder.new(:rails) do |c|
|
80
|
+
c.scm = "git@codebasehq.com:mocra/misc/mocra-web.git"
|
81
|
+
c.public_scm = true
|
82
|
+
end
|
83
|
+
end
|
84
|
+
it "builds config.xml" do
|
85
|
+
config_xml("rails", "single").should == @config.to_xml
|
75
86
|
end
|
76
87
|
end
|
77
|
-
|
78
|
-
|
88
|
+
|
89
|
+
# <branches>
|
90
|
+
# <hudson.plugins.git.BranchSpec>
|
91
|
+
# <name>master</name>
|
92
|
+
# </hudson.plugins.git.BranchSpec>
|
93
|
+
# <hudson.plugins.git.BranchSpec>
|
94
|
+
# <name>other</name>
|
95
|
+
# </hudson.plugins.git.BranchSpec>
|
96
|
+
# </branches>
|
97
|
+
describe "#scm-branches - set branches" do
|
98
|
+
before do
|
99
|
+
@config = Hudson::JobConfigBuilder.new(:rails) do |c|
|
100
|
+
c.scm = "git@codebasehq.com:mocra/misc/mocra-web.git"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
it "defaults to 'master'" do
|
104
|
+
branch_names = Hpricot.XML(@config.to_xml).search("branches name")
|
105
|
+
branch_names.size.should == 1
|
106
|
+
branch_names.text.should == "master"
|
107
|
+
branch_names.first.parent.name.should == "hudson.plugins.git.BranchSpec"
|
108
|
+
end
|
109
|
+
it "can have specific branches" do
|
110
|
+
branches = @config.scm_branches = %w[master other branches]
|
111
|
+
branch_names = Hpricot.XML(@config.to_xml).search("branches name")
|
112
|
+
branch_names.size.should == 3
|
113
|
+
branch_names.map(&:inner_text).should == branches
|
114
|
+
end
|
79
115
|
end
|
80
116
|
end
|
81
117
|
|
metadata
CHANGED
@@ -1,25 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hudson
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 5
|
9
|
+
- 0
|
10
|
+
version: 0.5.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Charles Lowell
|
14
|
-
-
|
14
|
+
- Nic Williams
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-12-01 00:00:00 -08:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
|
+
name: term-ansicolor
|
24
|
+
prerelease: false
|
23
25
|
requirement: &id001 !ruby/object:Gem::Requirement
|
24
26
|
none: false
|
25
27
|
requirements:
|
@@ -32,10 +34,10 @@ dependencies:
|
|
32
34
|
- 4
|
33
35
|
version: 1.0.4
|
34
36
|
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
name: term-ansicolor
|
37
37
|
version_requirements: *id001
|
38
38
|
- !ruby/object:Gem::Dependency
|
39
|
+
name: yajl-ruby
|
40
|
+
prerelease: false
|
39
41
|
requirement: &id002 !ruby/object:Gem::Requirement
|
40
42
|
none: false
|
41
43
|
requirements:
|
@@ -48,10 +50,10 @@ dependencies:
|
|
48
50
|
- 6
|
49
51
|
version: 0.7.6
|
50
52
|
type: :runtime
|
51
|
-
prerelease: false
|
52
|
-
name: yajl-ruby
|
53
53
|
version_requirements: *id002
|
54
54
|
- !ruby/object:Gem::Dependency
|
55
|
+
name: httparty
|
56
|
+
prerelease: false
|
55
57
|
requirement: &id003 !ruby/object:Gem::Requirement
|
56
58
|
none: false
|
57
59
|
requirements:
|
@@ -64,10 +66,10 @@ dependencies:
|
|
64
66
|
- 1
|
65
67
|
version: 0.6.1
|
66
68
|
type: :runtime
|
67
|
-
prerelease: false
|
68
|
-
name: httparty
|
69
69
|
version_requirements: *id003
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
|
+
name: builder
|
72
|
+
prerelease: false
|
71
73
|
requirement: &id004 !ruby/object:Gem::Requirement
|
72
74
|
none: false
|
73
75
|
requirements:
|
@@ -80,10 +82,10 @@ dependencies:
|
|
80
82
|
- 2
|
81
83
|
version: 2.1.2
|
82
84
|
type: :runtime
|
83
|
-
prerelease: false
|
84
|
-
name: builder
|
85
85
|
version_requirements: *id004
|
86
86
|
- !ruby/object:Gem::Dependency
|
87
|
+
name: thor
|
88
|
+
prerelease: false
|
87
89
|
requirement: &id005 !ruby/object:Gem::Requirement
|
88
90
|
none: false
|
89
91
|
requirements:
|
@@ -96,10 +98,10 @@ dependencies:
|
|
96
98
|
- 2
|
97
99
|
version: 0.14.2
|
98
100
|
type: :runtime
|
99
|
-
prerelease: false
|
100
|
-
name: thor
|
101
101
|
version_requirements: *id005
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
|
+
name: hpricot
|
104
|
+
prerelease: false
|
103
105
|
requirement: &id006 !ruby/object:Gem::Requirement
|
104
106
|
none: false
|
105
107
|
requirements:
|
@@ -110,10 +112,10 @@ dependencies:
|
|
110
112
|
- 0
|
111
113
|
version: "0"
|
112
114
|
type: :runtime
|
113
|
-
prerelease: false
|
114
|
-
name: hpricot
|
115
115
|
version_requirements: *id006
|
116
116
|
- !ruby/object:Gem::Dependency
|
117
|
+
name: rake
|
118
|
+
prerelease: false
|
117
119
|
requirement: &id007 !ruby/object:Gem::Requirement
|
118
120
|
none: false
|
119
121
|
requirements:
|
@@ -126,10 +128,10 @@ dependencies:
|
|
126
128
|
- 7
|
127
129
|
version: 0.8.7
|
128
130
|
type: :development
|
129
|
-
prerelease: false
|
130
|
-
name: rake
|
131
131
|
version_requirements: *id007
|
132
132
|
- !ruby/object:Gem::Dependency
|
133
|
+
name: cucumber
|
134
|
+
prerelease: false
|
133
135
|
requirement: &id008 !ruby/object:Gem::Requirement
|
134
136
|
none: false
|
135
137
|
requirements:
|
@@ -142,10 +144,10 @@ dependencies:
|
|
142
144
|
- 0
|
143
145
|
version: 0.9.0
|
144
146
|
type: :development
|
145
|
-
prerelease: false
|
146
|
-
name: cucumber
|
147
147
|
version_requirements: *id008
|
148
148
|
- !ruby/object:Gem::Dependency
|
149
|
+
name: rspec
|
150
|
+
prerelease: false
|
149
151
|
requirement: &id009 !ruby/object:Gem::Requirement
|
150
152
|
none: false
|
151
153
|
requirements:
|
@@ -158,10 +160,10 @@ dependencies:
|
|
158
160
|
- 0
|
159
161
|
version: 2.0.0
|
160
162
|
type: :development
|
161
|
-
prerelease: false
|
162
|
-
name: rspec
|
163
163
|
version_requirements: *id009
|
164
164
|
- !ruby/object:Gem::Dependency
|
165
|
+
name: json
|
166
|
+
prerelease: false
|
165
167
|
requirement: &id010 !ruby/object:Gem::Requirement
|
166
168
|
none: false
|
167
169
|
requirements:
|
@@ -174,10 +176,10 @@ dependencies:
|
|
174
176
|
- 0
|
175
177
|
version: 1.4.0
|
176
178
|
type: :development
|
177
|
-
prerelease: false
|
178
|
-
name: json
|
179
179
|
version_requirements: *id010
|
180
180
|
- !ruby/object:Gem::Dependency
|
181
|
+
name: awesome_print
|
182
|
+
prerelease: false
|
181
183
|
requirement: &id011 !ruby/object:Gem::Requirement
|
182
184
|
none: false
|
183
185
|
requirements:
|
@@ -188,8 +190,6 @@ dependencies:
|
|
188
190
|
- 0
|
189
191
|
version: "0"
|
190
192
|
type: :development
|
191
|
-
prerelease: false
|
192
|
-
name: awesome_print
|
193
193
|
version_requirements: *id011
|
194
194
|
description: A suite of utilities for bringing continous integration to your projects (not the other way around) with hudson CI
|
195
195
|
email:
|
@@ -202,8 +202,14 @@ extensions: []
|
|
202
202
|
extra_rdoc_files: []
|
203
203
|
|
204
204
|
files:
|
205
|
-
-
|
205
|
+
- .gitignore
|
206
206
|
- Changelog.md
|
207
|
+
- Gemfile
|
208
|
+
- Gemfile.lock
|
209
|
+
- README.md
|
210
|
+
- Rakefile
|
211
|
+
- bin/hudson
|
212
|
+
- features/default_host.feature
|
207
213
|
- features/development.feature
|
208
214
|
- features/launch_server.feature
|
209
215
|
- features/listing_jobs.feature
|
@@ -216,91 +222,33 @@ files:
|
|
216
222
|
- features/support/common.rb
|
217
223
|
- features/support/env.rb
|
218
224
|
- features/support/hooks.rb
|
225
|
+
- features/support/hudson_helpers.rb
|
219
226
|
- features/support/matchers.rb
|
220
|
-
- fixtures/projects/non-bundler/Rakefile
|
221
|
-
- fixtures/projects/rails-3/app/controllers/application_controller.rb
|
222
|
-
- fixtures/projects/rails-3/app/helpers/application_helper.rb
|
223
|
-
- fixtures/projects/rails-3/app/views/layouts/application.html.erb
|
224
|
-
- fixtures/projects/rails-3/config/application.rb
|
225
|
-
- fixtures/projects/rails-3/config/boot.rb
|
226
|
-
- fixtures/projects/rails-3/config/database.yml
|
227
|
-
- fixtures/projects/rails-3/config/environment.rb
|
228
|
-
- fixtures/projects/rails-3/config/environments/development.rb
|
229
|
-
- fixtures/projects/rails-3/config/environments/production.rb
|
230
|
-
- fixtures/projects/rails-3/config/environments/test.rb
|
231
|
-
- fixtures/projects/rails-3/config/initializers/backtrace_silencers.rb
|
232
|
-
- fixtures/projects/rails-3/config/initializers/inflections.rb
|
233
|
-
- fixtures/projects/rails-3/config/initializers/mime_types.rb
|
234
|
-
- fixtures/projects/rails-3/config/initializers/secret_token.rb
|
235
|
-
- fixtures/projects/rails-3/config/initializers/session_store.rb
|
236
|
-
- fixtures/projects/rails-3/config/locales/en.yml
|
237
|
-
- fixtures/projects/rails-3/config/routes.rb
|
238
|
-
- fixtures/projects/rails-3/config.ru
|
239
|
-
- fixtures/projects/rails-3/db/seeds.rb
|
240
|
-
- fixtures/projects/rails-3/doc/README_FOR_APP
|
241
|
-
- fixtures/projects/rails-3/Gemfile
|
242
|
-
- fixtures/projects/rails-3/Gemfile.lock
|
243
|
-
- fixtures/projects/rails-3/log/development.log
|
244
|
-
- fixtures/projects/rails-3/log/production.log
|
245
|
-
- fixtures/projects/rails-3/log/server.log
|
246
|
-
- fixtures/projects/rails-3/log/test.log
|
247
|
-
- fixtures/projects/rails-3/public/404.html
|
248
|
-
- fixtures/projects/rails-3/public/422.html
|
249
|
-
- fixtures/projects/rails-3/public/500.html
|
250
|
-
- fixtures/projects/rails-3/public/favicon.ico
|
251
|
-
- fixtures/projects/rails-3/public/images/rails.png
|
252
|
-
- fixtures/projects/rails-3/public/index.html
|
253
|
-
- fixtures/projects/rails-3/public/javascripts/application.js
|
254
|
-
- fixtures/projects/rails-3/public/javascripts/controls.js
|
255
|
-
- fixtures/projects/rails-3/public/javascripts/dragdrop.js
|
256
|
-
- fixtures/projects/rails-3/public/javascripts/effects.js
|
257
|
-
- fixtures/projects/rails-3/public/javascripts/prototype.js
|
258
|
-
- fixtures/projects/rails-3/public/javascripts/rails.js
|
259
|
-
- fixtures/projects/rails-3/public/robots.txt
|
260
|
-
- fixtures/projects/rails-3/Rakefile
|
261
|
-
- fixtures/projects/rails-3/README
|
262
|
-
- fixtures/projects/rails-3/script/rails
|
263
|
-
- fixtures/projects/rails-3/test/performance/browsing_test.rb
|
264
|
-
- fixtures/projects/rails-3/test/test_helper.rb
|
265
|
-
- fixtures/projects/ruby/Gemfile
|
266
|
-
- fixtures/projects/ruby/Gemfile.lock
|
267
|
-
- fixtures/projects/ruby/Rakefile
|
268
|
-
- Gemfile
|
269
|
-
- Gemfile.lock
|
270
227
|
- hudson.gemspec
|
228
|
+
- lib/hudson.rb
|
271
229
|
- lib/hudson/api.rb
|
272
|
-
- lib/hudson/cli/formatting.rb
|
273
230
|
- lib/hudson/cli.rb
|
231
|
+
- lib/hudson/cli/formatting.rb
|
274
232
|
- lib/hudson/config.rb
|
275
233
|
- lib/hudson/core_ext/hash.rb
|
276
234
|
- lib/hudson/core_ext/object/blank.rb
|
277
235
|
- lib/hudson/hudson-cli.jar
|
278
|
-
- lib/hudson/
|
279
|
-
- lib/hudson/hudson_version.rb
|
236
|
+
- lib/hudson/installation.rb
|
280
237
|
- lib/hudson/job_config_builder.rb
|
281
|
-
- lib/hudson/plugins/envfile.hpi
|
282
|
-
- lib/hudson/plugins/git.hpi
|
283
|
-
- lib/hudson/plugins/github.hpi
|
284
|
-
- lib/hudson/plugins/greenballs.hpi
|
285
|
-
- lib/hudson/plugins/rake.hpi
|
286
|
-
- lib/hudson/plugins/ruby.hpi
|
287
238
|
- lib/hudson/project_scm.rb
|
288
239
|
- lib/hudson/remote.rb
|
289
240
|
- lib/hudson/version.rb
|
290
|
-
- lib/hudson.rb
|
291
|
-
- Rakefile
|
292
|
-
- README.md
|
293
241
|
- spec/fixtures/ec2_global.config.xml
|
294
242
|
- spec/fixtures/rails.multi.config.xml
|
295
243
|
- spec/fixtures/rails.single.config.triggers.xml
|
296
244
|
- spec/fixtures/rails.single.config.xml
|
245
|
+
- spec/fixtures/ruby.multi-ruby-multi-labels.config.xml
|
246
|
+
- spec/fixtures/ruby.multi.config.xml
|
297
247
|
- spec/fixtures/ruby.single.config.xml
|
298
|
-
- spec/fixtures/rubygem.config.xml
|
299
248
|
- spec/fixtures/therubyracer.config.xml
|
300
249
|
- spec/hash_key_cleaner_spec.rb
|
301
250
|
- spec/job_config_builder_spec.rb
|
302
251
|
- spec/spec_helper.rb
|
303
|
-
- tasks/upgrade.rake
|
304
252
|
has_rdoc: true
|
305
253
|
homepage: http://github.com/cowboyd/hudson.rb
|
306
254
|
licenses: []
|