akqa-jenkins 0.6.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/Changelog.md +54 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +56 -0
- data/README.md +159 -0
- data/Rakefile +82 -0
- data/bin/jenkins +11 -0
- data/cucumber.yml +8 -0
- data/features/build_details.feature +42 -0
- data/features/configure.feature +36 -0
- data/features/default_host.feature +26 -0
- data/features/development.feature +14 -0
- data/features/launch_server.feature +16 -0
- data/features/listing_jobs.feature +34 -0
- data/features/manage_jobs.feature +214 -0
- data/features/manage_slave_nodes.feature +82 -0
- data/features/step_definitions/common_steps.rb +192 -0
- data/features/step_definitions/fixture_project_steps.rb +8 -0
- data/features/step_definitions/jenkins_steps.rb +116 -0
- data/features/step_definitions/scm_steps.rb +12 -0
- data/features/support/common.rb +37 -0
- data/features/support/env.rb +19 -0
- data/features/support/hooks.rb +16 -0
- data/features/support/jenkins_helpers.rb +6 -0
- data/features/support/matchers.rb +10 -0
- data/fixtures/jenkins/envfile.hpi +0 -0
- data/fixtures/jenkins/git.hpi +0 -0
- data/fixtures/jenkins/github.hpi +0 -0
- data/fixtures/jenkins/greenballs.hpi +0 -0
- data/fixtures/jenkins/rake.hpi +0 -0
- data/fixtures/jenkins/ruby.hpi +0 -0
- data/fixtures/projects/erlang/rebar.config +1 -0
- data/fixtures/projects/non-bundler/Rakefile +4 -0
- data/fixtures/projects/rails-3/.gitignore +4 -0
- data/fixtures/projects/rails-3/Gemfile +30 -0
- data/fixtures/projects/rails-3/Gemfile.lock +74 -0
- data/fixtures/projects/rails-3/README +256 -0
- data/fixtures/projects/rails-3/Rakefile +7 -0
- data/fixtures/projects/rails-3/app/controllers/application_controller.rb +3 -0
- data/fixtures/projects/rails-3/app/helpers/application_helper.rb +2 -0
- data/fixtures/projects/rails-3/app/views/layouts/application.html.erb +14 -0
- data/fixtures/projects/rails-3/config.ru +4 -0
- data/fixtures/projects/rails-3/config/application.rb +42 -0
- data/fixtures/projects/rails-3/config/boot.rb +13 -0
- data/fixtures/projects/rails-3/config/database.yml +22 -0
- data/fixtures/projects/rails-3/config/environment.rb +5 -0
- data/fixtures/projects/rails-3/config/environments/development.rb +26 -0
- data/fixtures/projects/rails-3/config/environments/production.rb +49 -0
- data/fixtures/projects/rails-3/config/environments/test.rb +35 -0
- data/fixtures/projects/rails-3/config/initializers/backtrace_silencers.rb +7 -0
- data/fixtures/projects/rails-3/config/initializers/inflections.rb +10 -0
- data/fixtures/projects/rails-3/config/initializers/mime_types.rb +5 -0
- data/fixtures/projects/rails-3/config/initializers/secret_token.rb +7 -0
- data/fixtures/projects/rails-3/config/initializers/session_store.rb +8 -0
- data/fixtures/projects/rails-3/config/locales/en.yml +5 -0
- data/fixtures/projects/rails-3/config/routes.rb +58 -0
- data/fixtures/projects/rails-3/db/seeds.rb +7 -0
- data/fixtures/projects/rails-3/doc/README_FOR_APP +2 -0
- data/fixtures/projects/rails-3/lib/tasks/.gitkeep +0 -0
- data/fixtures/projects/rails-3/public/404.html +26 -0
- data/fixtures/projects/rails-3/public/422.html +26 -0
- data/fixtures/projects/rails-3/public/500.html +26 -0
- 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 +239 -0
- data/fixtures/projects/rails-3/public/javascripts/application.js +2 -0
- data/fixtures/projects/rails-3/public/javascripts/controls.js +965 -0
- data/fixtures/projects/rails-3/public/javascripts/dragdrop.js +974 -0
- data/fixtures/projects/rails-3/public/javascripts/effects.js +1123 -0
- data/fixtures/projects/rails-3/public/javascripts/prototype.js +6001 -0
- data/fixtures/projects/rails-3/public/javascripts/rails.js +175 -0
- data/fixtures/projects/rails-3/public/robots.txt +5 -0
- data/fixtures/projects/rails-3/public/stylesheets/.gitkeep +0 -0
- data/fixtures/projects/rails-3/script/rails +6 -0
- data/fixtures/projects/rails-3/test/performance/browsing_test.rb +9 -0
- data/fixtures/projects/rails-3/test/test_helper.rb +13 -0
- data/fixtures/projects/rails-3/vendor/plugins/.gitkeep +0 -0
- data/fixtures/projects/ruby/Gemfile +3 -0
- data/fixtures/projects/ruby/Gemfile.lock +10 -0
- data/fixtures/projects/ruby/Rakefile +4 -0
- data/jenkins.gemspec +33 -0
- data/lib/jenkins.rb +6 -0
- data/lib/jenkins/api.rb +250 -0
- data/lib/jenkins/cli.rb +291 -0
- data/lib/jenkins/cli/formatting.rb +53 -0
- data/lib/jenkins/config.rb +27 -0
- data/lib/jenkins/core_ext/hash.rb +9 -0
- data/lib/jenkins/core_ext/object/blank.rb +77 -0
- data/lib/jenkins/hudson-cli.jar +0 -0
- data/lib/jenkins/job_config_builder.rb +292 -0
- data/lib/jenkins/project_scm.rb +22 -0
- data/lib/jenkins/remote.rb +11 -0
- data/lib/jenkins/version.rb +3 -0
- data/spec/fixtures/ec2_global.config.xml +103 -0
- data/spec/fixtures/erlang.single.config.xml +59 -0
- data/spec/fixtures/rails.multi.config.xml +82 -0
- data/spec/fixtures/rails.single.config.triggers.xml +84 -0
- data/spec/fixtures/rails.single.config.xml +80 -0
- data/spec/fixtures/ruby.multi-ruby-multi-labels.config.xml +84 -0
- data/spec/fixtures/ruby.multi.config.xml +77 -0
- data/spec/fixtures/ruby.single.config.xml +58 -0
- data/spec/fixtures/therubyracer.config.xml +77 -0
- data/spec/hash_key_cleaner_spec.rb +25 -0
- data/spec/job_config_builder_spec.rb +150 -0
- data/spec/spec_helper.rb +15 -0
- metadata +283 -0
@@ -0,0 +1,77 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
<matrix-project>
|
3
|
+
<actions/>
|
4
|
+
<description></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>git://github.com/cowboyd/therubyracer.git</string>
|
21
|
+
<string>tagopt</string>
|
22
|
+
<string></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
|
+
<mergeOptions/>
|
31
|
+
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
|
32
|
+
<clean>true</clean>
|
33
|
+
<choosingStrategy>Default</choosingStrategy>
|
34
|
+
<submoduleCfg class="list"/>
|
35
|
+
</scm>
|
36
|
+
<canRoam>true</canRoam>
|
37
|
+
<disabled>false</disabled>
|
38
|
+
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
|
39
|
+
<triggers class="vector"/>
|
40
|
+
<concurrentBuild>false</concurrentBuild>
|
41
|
+
<axes>
|
42
|
+
<axis>
|
43
|
+
<name>RUBY_VERSION</name>
|
44
|
+
<values>
|
45
|
+
<string>1.8.6</string>
|
46
|
+
<string>1.8.7</string>
|
47
|
+
<string>1.9.1</string>
|
48
|
+
</values>
|
49
|
+
</axis>
|
50
|
+
<axis>
|
51
|
+
<name>label</name>
|
52
|
+
<values>
|
53
|
+
<string>OSX-Leopard-10.5</string>
|
54
|
+
<string>Ubuntu-Lucid-10.04-server-amd64</string>
|
55
|
+
<string>Ubuntu-Karmic-9.10-server-amd64</string>
|
56
|
+
<string>OSX-Snow-Leopard-10.6.3</string>
|
57
|
+
</values>
|
58
|
+
</axis>
|
59
|
+
</axes>
|
60
|
+
<builders>
|
61
|
+
<hudson.tasks.Shell>
|
62
|
+
<command>#!/bin/bash -lxe
|
63
|
+
GEMSET=build-$BUILD_NUMBER-ruby-$RUBY_VERSION
|
64
|
+
rvm $RUBY_VERSION
|
65
|
+
rvm gemset create $GEMSET
|
66
|
+
rvm gemset use $GEMSET
|
67
|
+
gem install rake rake-compiler rspec
|
68
|
+
rake gem
|
69
|
+
gem install therubyracer-*.gem
|
70
|
+
v8 --selftest
|
71
|
+
</command>
|
72
|
+
</hudson.tasks.Shell>
|
73
|
+
</builders>
|
74
|
+
<publishers/>
|
75
|
+
<buildWrappers/>
|
76
|
+
<runSequentially>false</runSequentially>
|
77
|
+
</matrix-project>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require File.dirname(__FILE__) + "/spec_helper"
|
2
|
+
|
3
|
+
require "jenkins/core_ext/hash"
|
4
|
+
|
5
|
+
describe Hash do
|
6
|
+
subject do
|
7
|
+
{
|
8
|
+
:simple => "simple",
|
9
|
+
:under_score => "under_score",
|
10
|
+
:"hyp-hen" => "hyphen",
|
11
|
+
"str_under_score" => "str_under_score",
|
12
|
+
"str-hyp-hen" => "str-hyp-hen"
|
13
|
+
}
|
14
|
+
end
|
15
|
+
|
16
|
+
it do
|
17
|
+
subject.with_clean_keys.should == {
|
18
|
+
:simple => "simple",
|
19
|
+
:under_score => "under_score",
|
20
|
+
:hyp_hen => "hyphen",
|
21
|
+
:str_under_score => "str_under_score",
|
22
|
+
:str_hyp_hen => "str-hyp-hen"
|
23
|
+
}
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,150 @@
|
|
1
|
+
require File.dirname(__FILE__) + "/spec_helper"
|
2
|
+
|
3
|
+
describe Jenkins::JobConfigBuilder do
|
4
|
+
include ConfigFixtureLoaders
|
5
|
+
|
6
|
+
describe "explicit steps to match a ruby job" do
|
7
|
+
before do
|
8
|
+
@config = Jenkins::JobConfigBuilder.new(:rails) do |c|
|
9
|
+
c.scm = "git://codebasehq.com/mocra/misc/mocra-web.git"
|
10
|
+
c.steps = [
|
11
|
+
[:build_shell_step, "step 1"],
|
12
|
+
[:build_shell_step, "step 2"]
|
13
|
+
]
|
14
|
+
end
|
15
|
+
end
|
16
|
+
it "builds config.xml" do
|
17
|
+
steps = Hpricot.XML(@config.to_xml).search("command")
|
18
|
+
steps.map(&:inner_text).should == ["step 1", "step 2"]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
describe "rails job; single axis" do
|
24
|
+
before do
|
25
|
+
@config = Jenkins::JobConfigBuilder.new(:rails) do |c|
|
26
|
+
c.scm = "git://codebasehq.com/mocra/misc/mocra-web.git"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
it "builds config.xml" do
|
30
|
+
config_xml("rails", "single").should == @config.to_xml
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
describe "many rubies" do
|
37
|
+
before do
|
38
|
+
@config = Jenkins::JobConfigBuilder.new(:ruby) do |c|
|
39
|
+
c.scm = "http://github.com/drnic/picasa_plucker.git"
|
40
|
+
c.rubies = %w[1.8.7 1.9.2 rbx-head jruby]
|
41
|
+
end
|
42
|
+
end
|
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
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe "assigned slave nodes for slave usage" do
|
54
|
+
before do
|
55
|
+
@config = Jenkins::JobConfigBuilder.new(:rails) do |c|
|
56
|
+
c.assigned_node = "my-slave"
|
57
|
+
end
|
58
|
+
end
|
59
|
+
it "builds config.xml" do
|
60
|
+
Hpricot.XML(@config.to_xml).search("assignedNode").size.should == 1
|
61
|
+
Hpricot.XML(@config.to_xml).search("assignedNode").text.should == "my-slave"
|
62
|
+
Hpricot.XML(@config.to_xml).search("canRoam").text.should == "false"
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe "no specific slave nodes" do
|
67
|
+
before do
|
68
|
+
@config = Jenkins::JobConfigBuilder.new(:rails) do |c|
|
69
|
+
end
|
70
|
+
end
|
71
|
+
it "builds config.xml" do
|
72
|
+
Hpricot.XML(@config.to_xml).search("assignedNode").size.should == 0
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
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 = Jenkins::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
|
86
|
+
end
|
87
|
+
end
|
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 = Jenkins::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
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe "setup ENV variables via envfile plugin" do
|
119
|
+
before do
|
120
|
+
@config = Jenkins::JobConfigBuilder.new(:rails) do |c|
|
121
|
+
c.scm = "git://codebasehq.com/mocra/misc/mocra-web.git"
|
122
|
+
c.steps = []
|
123
|
+
c.envfile = "/path/to/env/file"
|
124
|
+
end
|
125
|
+
end
|
126
|
+
it "builds config.xml" do
|
127
|
+
xml_bite = <<-XML.gsub(/^ /, '')
|
128
|
+
<buildWrappers>
|
129
|
+
<hudson.plugins.envfile.EnvFileBuildWrapper>
|
130
|
+
<filePath>/path/to/env/file</filePath>
|
131
|
+
</hudson.plugins.envfile.EnvFileBuildWrapper>
|
132
|
+
</buildWrappers>
|
133
|
+
XML
|
134
|
+
Hpricot.XML(@config.to_xml).search("buildWrappers").to_s.should == xml_bite.strip
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
describe "erlang job; single axis" do
|
139
|
+
before do
|
140
|
+
@config = Jenkins::JobConfigBuilder.new(:erlang) do |c|
|
141
|
+
c.scm = "git://codebasehq.com/mocra/misc/mocra-web.git"
|
142
|
+
end
|
143
|
+
end
|
144
|
+
it "builds config.xml" do
|
145
|
+
config_xml("erlang", "single").should == @config.to_xml
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
|
150
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require "bundler"
|
2
|
+
Bundler.setup
|
3
|
+
|
4
|
+
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
5
|
+
require 'jenkins'
|
6
|
+
require 'hpricot'
|
7
|
+
|
8
|
+
module ConfigFixtureLoaders
|
9
|
+
def config_xml(name, variation = nil)
|
10
|
+
name += ".#{variation}" if variation
|
11
|
+
@@config_fixture_loaders ||= {}
|
12
|
+
@@config_fixture_loaders[name] ||= File.read(File.dirname(__FILE__) + "/fixtures/#{name}.config.xml")
|
13
|
+
@@config_fixture_loaders[name]
|
14
|
+
end
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,283 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: akqa-jenkins
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.6.4.1
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Charles Lowell
|
9
|
+
- Nic Williams
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
|
14
|
+
date: 2011-05-03 00:00:00 -07:00
|
15
|
+
default_executable:
|
16
|
+
dependencies:
|
17
|
+
- !ruby/object:Gem::Dependency
|
18
|
+
name: term-ansicolor
|
19
|
+
prerelease: false
|
20
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
21
|
+
none: false
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.0.4
|
26
|
+
type: :runtime
|
27
|
+
version_requirements: *id001
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: httparty
|
30
|
+
prerelease: false
|
31
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
32
|
+
none: false
|
33
|
+
requirements:
|
34
|
+
- - ~>
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: 0.6.1
|
37
|
+
type: :runtime
|
38
|
+
version_requirements: *id002
|
39
|
+
- !ruby/object:Gem::Dependency
|
40
|
+
name: builder
|
41
|
+
prerelease: false
|
42
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.1.2
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id003
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: thor
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ~>
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 0.14.2
|
59
|
+
type: :runtime
|
60
|
+
version_requirements: *id004
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: hpricot
|
63
|
+
prerelease: false
|
64
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: "0"
|
70
|
+
type: :runtime
|
71
|
+
version_requirements: *id005
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: json_pure
|
74
|
+
prerelease: false
|
75
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 1.5.1
|
81
|
+
type: :runtime
|
82
|
+
version_requirements: *id006
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: jenkins-war
|
85
|
+
prerelease: false
|
86
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
87
|
+
none: false
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: "1.396"
|
92
|
+
type: :development
|
93
|
+
version_requirements: *id007
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: rake
|
96
|
+
prerelease: false
|
97
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ~>
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 0.8.7
|
103
|
+
type: :development
|
104
|
+
version_requirements: *id008
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: cucumber
|
107
|
+
prerelease: false
|
108
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
109
|
+
none: false
|
110
|
+
requirements:
|
111
|
+
- - ~>
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: 0.10.0
|
114
|
+
type: :development
|
115
|
+
version_requirements: *id009
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
name: rspec
|
118
|
+
prerelease: false
|
119
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
120
|
+
none: false
|
121
|
+
requirements:
|
122
|
+
- - ~>
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 2.0.0
|
125
|
+
type: :development
|
126
|
+
version_requirements: *id010
|
127
|
+
- !ruby/object:Gem::Dependency
|
128
|
+
name: awesome_print
|
129
|
+
prerelease: false
|
130
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
131
|
+
none: false
|
132
|
+
requirements:
|
133
|
+
- - ">="
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: "0"
|
136
|
+
type: :development
|
137
|
+
version_requirements: *id011
|
138
|
+
description: A suite of utilities for bringing continous integration to your projects (not the other way around) with jenkins CI
|
139
|
+
email:
|
140
|
+
- cowboyd@thefrontside.net
|
141
|
+
- drnicwilliams@gmail.com
|
142
|
+
executables:
|
143
|
+
- jenkins
|
144
|
+
extensions: []
|
145
|
+
|
146
|
+
extra_rdoc_files: []
|
147
|
+
|
148
|
+
files:
|
149
|
+
- .gitignore
|
150
|
+
- Changelog.md
|
151
|
+
- Gemfile
|
152
|
+
- Gemfile.lock
|
153
|
+
- README.md
|
154
|
+
- Rakefile
|
155
|
+
- bin/jenkins
|
156
|
+
- cucumber.yml
|
157
|
+
- features/build_details.feature
|
158
|
+
- features/configure.feature
|
159
|
+
- features/default_host.feature
|
160
|
+
- features/development.feature
|
161
|
+
- features/launch_server.feature
|
162
|
+
- features/listing_jobs.feature
|
163
|
+
- features/manage_jobs.feature
|
164
|
+
- features/manage_slave_nodes.feature
|
165
|
+
- features/step_definitions/common_steps.rb
|
166
|
+
- features/step_definitions/fixture_project_steps.rb
|
167
|
+
- features/step_definitions/jenkins_steps.rb
|
168
|
+
- features/step_definitions/scm_steps.rb
|
169
|
+
- features/support/common.rb
|
170
|
+
- features/support/env.rb
|
171
|
+
- features/support/hooks.rb
|
172
|
+
- features/support/jenkins_helpers.rb
|
173
|
+
- features/support/matchers.rb
|
174
|
+
- fixtures/jenkins/envfile.hpi
|
175
|
+
- fixtures/jenkins/git.hpi
|
176
|
+
- fixtures/jenkins/github.hpi
|
177
|
+
- fixtures/jenkins/greenballs.hpi
|
178
|
+
- fixtures/jenkins/rake.hpi
|
179
|
+
- fixtures/jenkins/ruby.hpi
|
180
|
+
- fixtures/projects/erlang/rebar.config
|
181
|
+
- fixtures/projects/non-bundler/Rakefile
|
182
|
+
- fixtures/projects/rails-3/.gitignore
|
183
|
+
- fixtures/projects/rails-3/Gemfile
|
184
|
+
- fixtures/projects/rails-3/Gemfile.lock
|
185
|
+
- fixtures/projects/rails-3/README
|
186
|
+
- fixtures/projects/rails-3/Rakefile
|
187
|
+
- fixtures/projects/rails-3/app/controllers/application_controller.rb
|
188
|
+
- fixtures/projects/rails-3/app/helpers/application_helper.rb
|
189
|
+
- fixtures/projects/rails-3/app/views/layouts/application.html.erb
|
190
|
+
- fixtures/projects/rails-3/config.ru
|
191
|
+
- fixtures/projects/rails-3/config/application.rb
|
192
|
+
- fixtures/projects/rails-3/config/boot.rb
|
193
|
+
- fixtures/projects/rails-3/config/database.yml
|
194
|
+
- fixtures/projects/rails-3/config/environment.rb
|
195
|
+
- fixtures/projects/rails-3/config/environments/development.rb
|
196
|
+
- fixtures/projects/rails-3/config/environments/production.rb
|
197
|
+
- fixtures/projects/rails-3/config/environments/test.rb
|
198
|
+
- fixtures/projects/rails-3/config/initializers/backtrace_silencers.rb
|
199
|
+
- fixtures/projects/rails-3/config/initializers/inflections.rb
|
200
|
+
- fixtures/projects/rails-3/config/initializers/mime_types.rb
|
201
|
+
- fixtures/projects/rails-3/config/initializers/secret_token.rb
|
202
|
+
- fixtures/projects/rails-3/config/initializers/session_store.rb
|
203
|
+
- fixtures/projects/rails-3/config/locales/en.yml
|
204
|
+
- fixtures/projects/rails-3/config/routes.rb
|
205
|
+
- fixtures/projects/rails-3/db/seeds.rb
|
206
|
+
- fixtures/projects/rails-3/doc/README_FOR_APP
|
207
|
+
- fixtures/projects/rails-3/lib/tasks/.gitkeep
|
208
|
+
- fixtures/projects/rails-3/public/404.html
|
209
|
+
- fixtures/projects/rails-3/public/422.html
|
210
|
+
- fixtures/projects/rails-3/public/500.html
|
211
|
+
- fixtures/projects/rails-3/public/favicon.ico
|
212
|
+
- fixtures/projects/rails-3/public/images/rails.png
|
213
|
+
- fixtures/projects/rails-3/public/index.html
|
214
|
+
- fixtures/projects/rails-3/public/javascripts/application.js
|
215
|
+
- fixtures/projects/rails-3/public/javascripts/controls.js
|
216
|
+
- fixtures/projects/rails-3/public/javascripts/dragdrop.js
|
217
|
+
- fixtures/projects/rails-3/public/javascripts/effects.js
|
218
|
+
- fixtures/projects/rails-3/public/javascripts/prototype.js
|
219
|
+
- fixtures/projects/rails-3/public/javascripts/rails.js
|
220
|
+
- fixtures/projects/rails-3/public/robots.txt
|
221
|
+
- fixtures/projects/rails-3/public/stylesheets/.gitkeep
|
222
|
+
- fixtures/projects/rails-3/script/rails
|
223
|
+
- fixtures/projects/rails-3/test/performance/browsing_test.rb
|
224
|
+
- fixtures/projects/rails-3/test/test_helper.rb
|
225
|
+
- fixtures/projects/rails-3/vendor/plugins/.gitkeep
|
226
|
+
- fixtures/projects/ruby/Gemfile
|
227
|
+
- fixtures/projects/ruby/Gemfile.lock
|
228
|
+
- fixtures/projects/ruby/Rakefile
|
229
|
+
- jenkins.gemspec
|
230
|
+
- lib/jenkins.rb
|
231
|
+
- lib/jenkins/api.rb
|
232
|
+
- lib/jenkins/cli.rb
|
233
|
+
- lib/jenkins/cli/formatting.rb
|
234
|
+
- lib/jenkins/config.rb
|
235
|
+
- lib/jenkins/core_ext/hash.rb
|
236
|
+
- lib/jenkins/core_ext/object/blank.rb
|
237
|
+
- lib/jenkins/hudson-cli.jar
|
238
|
+
- lib/jenkins/job_config_builder.rb
|
239
|
+
- lib/jenkins/project_scm.rb
|
240
|
+
- lib/jenkins/remote.rb
|
241
|
+
- lib/jenkins/version.rb
|
242
|
+
- spec/fixtures/ec2_global.config.xml
|
243
|
+
- spec/fixtures/erlang.single.config.xml
|
244
|
+
- spec/fixtures/rails.multi.config.xml
|
245
|
+
- spec/fixtures/rails.single.config.triggers.xml
|
246
|
+
- spec/fixtures/rails.single.config.xml
|
247
|
+
- spec/fixtures/ruby.multi-ruby-multi-labels.config.xml
|
248
|
+
- spec/fixtures/ruby.multi.config.xml
|
249
|
+
- spec/fixtures/ruby.single.config.xml
|
250
|
+
- spec/fixtures/therubyracer.config.xml
|
251
|
+
- spec/hash_key_cleaner_spec.rb
|
252
|
+
- spec/job_config_builder_spec.rb
|
253
|
+
- spec/spec_helper.rb
|
254
|
+
has_rdoc: true
|
255
|
+
homepage: http://github.com/cowboyd/jenkins.rb
|
256
|
+
licenses: []
|
257
|
+
|
258
|
+
post_install_message:
|
259
|
+
rdoc_options: []
|
260
|
+
|
261
|
+
require_paths:
|
262
|
+
- lib
|
263
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
264
|
+
none: false
|
265
|
+
requirements:
|
266
|
+
- - ">="
|
267
|
+
- !ruby/object:Gem::Version
|
268
|
+
version: "0"
|
269
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
270
|
+
none: false
|
271
|
+
requirements:
|
272
|
+
- - ">="
|
273
|
+
- !ruby/object:Gem::Version
|
274
|
+
version: "0"
|
275
|
+
requirements: []
|
276
|
+
|
277
|
+
rubyforge_project: akqa-jenkins
|
278
|
+
rubygems_version: 1.6.1
|
279
|
+
signing_key:
|
280
|
+
specification_version: 3
|
281
|
+
summary: Painless Continuous Integration with Jenkins Server
|
282
|
+
test_files: []
|
283
|
+
|