travis 1.7.5.travis.658.5 → 1.7.5
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.
- checksums.yaml +5 -13
- data/README.md +7 -2
- data/lib/travis/cli/command.rb +1 -1
- data/lib/travis/cli/repo_command.rb +6 -3
- data/lib/travis/cli/setup/code_deploy.rb +55 -0
- data/lib/travis/version.rb +1 -1
- data/travis.gemspec +14 -7
- metadata +51 -44
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
Y2RjYTg1OTU3MGYxNWVmNmMwYTY2NmNjMGJhZGZlNzQ1NTRiNWI5YQ==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c762124ae2cd1d5d489f5361aff9cf5a8da6a084
|
4
|
+
data.tar.gz: 8d385611d4e2579b097b849c44cbaad65072abb3
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
M2QwZjg3MmNmNzhmOTY0YjQ4YTQ5ZDFlOGU4MGFjMWE1NDVhODk1NDhhZDI4
|
11
|
-
MDZlNDk3MWUzMDdiYTZiZGE1YmVjZDg5M2UwZDcxM2MxZWE0YmE=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MTRlNzE5NzU2MTA4MjAzYTAyMTVmZDI5Yjk2MGViODQyNjE3YzdmMDc0YjM1
|
14
|
-
ZDVjM2JkZTRmNmZhZmJhYWVlZjk3MmI4YjliMDMxMmViNzI5MDBhOTVlMWI1
|
15
|
-
NThkYWFlNDMyMGVlNDk4ZmY0NDgzYTMwM2VkMzY1OGVjNzI3OTY=
|
6
|
+
metadata.gz: 393a57b9f1c4b2077ac96a1a1129dacb889c735f2dc3966e74ce5195776cb043bbb7c567efbc29e87d82c7bd3465a4d17d6f10a006fc372f1f1a9adfd595c23b
|
7
|
+
data.tar.gz: 5a244e00d49047bfc2421ea2952b870888f4b9961270ff676e5d063e7b886e1f519d0a871bb9715cc61563cbf4a82d49fd52f7524d35cbaf8cb1dc20639cd1a0
|
data/README.md
CHANGED
@@ -1966,12 +1966,12 @@ You can check your Ruby version by running `ruby -v`:
|
|
1966
1966
|
|
1967
1967
|
Then run:
|
1968
1968
|
|
1969
|
-
$ gem install travis -v 1.7.
|
1969
|
+
$ gem install travis -v 1.7.5 --no-rdoc --no-ri
|
1970
1970
|
|
1971
1971
|
Now make sure everything is working:
|
1972
1972
|
|
1973
1973
|
$ travis version
|
1974
|
-
1.7.
|
1974
|
+
1.7.5
|
1975
1975
|
|
1976
1976
|
See also [Note on Ubuntu](#note-on-ubuntu) below.
|
1977
1977
|
|
@@ -2060,6 +2060,11 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
2060
2060
|
|
2061
2061
|
## Version History
|
2062
2062
|
|
2063
|
+
**1.7.5** (January 15, 2015)
|
2064
|
+
|
2065
|
+
* Add support for url.<remote>.insteadOf
|
2066
|
+
* Fix packaging error with 1.7.4, in which Code Deploy setup code was not included
|
2067
|
+
|
2063
2068
|
**1.7.4** (November 12, 2014)
|
2064
2069
|
|
2065
2070
|
* Add `travis setup codedeploy`
|
data/lib/travis/cli/command.rb
CHANGED
@@ -173,7 +173,7 @@ module Travis
|
|
173
173
|
else
|
174
174
|
write_to($stderr) do
|
175
175
|
next Tools::Completion.update_completion if Tools::Completion.completion_installed?
|
176
|
-
next unless agree('Shell completion not installed. Would you like to
|
176
|
+
next unless agree('Shell completion not installed. Would you like to install it now? ') { |q| q.default = "y" }
|
177
177
|
Tools::Completion.install_completion
|
178
178
|
end
|
179
179
|
end
|
@@ -18,7 +18,7 @@ module Travis
|
|
18
18
|
|
19
19
|
def setup
|
20
20
|
setup_enterprise
|
21
|
-
error "Can't figure out GitHub repo name. Ensure you're in the repo directory, or specify the repo name via the -r option (e.g. travis <command> -r <repo
|
21
|
+
error "Can't figure out GitHub repo name. Ensure you're in the repo directory, or specify the repo name via the -r option (e.g. travis <command> -r <owner>/<repo>)" unless self.slug ||= find_slug
|
22
22
|
error "GitHub repo name is invalid, it should be on the form 'owner/repo'" unless self.slug.include?("/")
|
23
23
|
self.api_endpoint = detect_api_endpoint
|
24
24
|
super
|
@@ -56,14 +56,17 @@ module Travis
|
|
56
56
|
end
|
57
57
|
|
58
58
|
def find_slug
|
59
|
-
load_slug ||
|
59
|
+
load_slug || begin
|
60
|
+
slug = detect_slug
|
61
|
+
interactive? ? store_slug(slug) : slug if slug
|
62
|
+
end
|
60
63
|
end
|
61
64
|
|
62
65
|
def detect_slug
|
63
66
|
git_head = `git name-rev --name-only HEAD 2>#{IO::NULL}`.chomp
|
64
67
|
git_remote = `git config --get branch.#{git_head}.remote 2>#{IO::NULL}`.chomp
|
65
68
|
git_remote = 'origin' if git_remote.empty?
|
66
|
-
git_info = `git
|
69
|
+
git_info = `git ls-remote --get-url #{git_remote} 2>#{IO::NULL}`.chomp
|
67
70
|
|
68
71
|
if Addressable::URI.parse(git_info).path =~ GIT_REGEX
|
69
72
|
detectected_slug = $1
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'travis/cli/setup'
|
2
|
+
require 'shellwords'
|
3
|
+
|
4
|
+
module Travis
|
5
|
+
module CLI
|
6
|
+
class Setup
|
7
|
+
class CodeDeploy < Service
|
8
|
+
description "triggering a new deployment on Amazon CodeDeploy"
|
9
|
+
AWS_CONFIG = File.expand_path('.aws/config', ENV['HOME'])
|
10
|
+
|
11
|
+
def run
|
12
|
+
if File.readable? AWS_CONFIG
|
13
|
+
content = File.read(AWS_CONFIG)
|
14
|
+
access_key = content[/aws_access_key_id = (\S+)\n/, 1]
|
15
|
+
secret_access_key = content[/aws_secret_access_key = (\S+)\n/, 1]
|
16
|
+
end
|
17
|
+
|
18
|
+
deploy 'codedeploy' do |config|
|
19
|
+
config['access_key_id'] = ask("Access key ID: ") { |q| q.default = access_key if access_key }.to_s
|
20
|
+
secret_access_key = nil unless access_key == config['access_key_id']
|
21
|
+
config['secret_access_key'] = secret_access_key || ask("Secret access key: ") { |q| q.echo = "*" }.to_s
|
22
|
+
config['bucket'] = ask("S3 Bucket: ").to_s
|
23
|
+
config['key'] = ask("S3 Key: ").to_s
|
24
|
+
config['bundle_type'] = ask("Bundle Type: ") { |q| q.default = config['key'][/\.(zip|tar|tgz)$/, 1] }.to_s
|
25
|
+
config['application'] = ask("Application Name: ") { |q| q.default = repository.name }.to_s
|
26
|
+
config['deployment_group'] = ask("Deployment Group Name: ").to_s
|
27
|
+
encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
|
28
|
+
end
|
29
|
+
|
30
|
+
if agree("Also push bundle to S3? ")
|
31
|
+
cd = travis_config['deploy']
|
32
|
+
s3 = {
|
33
|
+
'provider' => 's3',
|
34
|
+
'access_key_id' => cd['access_key_id'],
|
35
|
+
'secret_access_key' => cd['secret_access_key'],
|
36
|
+
'local_dir' => 'dpl_cd_upload',
|
37
|
+
'skip_cleanup' => true,
|
38
|
+
'on' => cd['on'],
|
39
|
+
'bucket' => cd['bucket']
|
40
|
+
}
|
41
|
+
|
42
|
+
s3['upload_dir'] = File.dirname(cd['key']) if cd['key'].include? '/'
|
43
|
+
travis_config['deploy'] = [ s3, cd ]
|
44
|
+
upload_file_name = File.basename(cd['key'])
|
45
|
+
source_file = ask("Source File: ") { |q| q.default = upload_file_name }
|
46
|
+
travis_config['before_deploy'] = [
|
47
|
+
"mkdir -p dpl_cd_upload",
|
48
|
+
"mv #{Shellwords.escape(source_file)} dpl_cd_upload/#{Shellwords.escape(upload_file_name)}"
|
49
|
+
]
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
data/lib/travis/version.rb
CHANGED
data/travis.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
Gem::Specification.new do |s|
|
3
3
|
# general infos
|
4
4
|
s.name = "travis"
|
5
|
-
s.version = "1.7.
|
5
|
+
s.version = "1.7.5"
|
6
6
|
s.description = "CLI and Ruby client library for Travis CI"
|
7
7
|
s.homepage = "https://github.com/travis-ci/travis.rb"
|
8
8
|
s.summary = "Travis CI client"
|
@@ -19,10 +19,12 @@ Gem::Specification.new do |s|
|
|
19
19
|
"Peter Souter",
|
20
20
|
"Peter van Dijk",
|
21
21
|
"Max Barnash",
|
22
|
-
"Dan Buch",
|
23
22
|
"Carlos Palhares",
|
23
|
+
"Dan Buch",
|
24
24
|
"Mathias Meyer",
|
25
25
|
"Thais Camilo and Konstantin Haase",
|
26
|
+
"Andreas Tiefenthaler",
|
27
|
+
"Jonne Ha\xC3\x9F",
|
26
28
|
"Josh Kalderimis",
|
27
29
|
"Julia S.Simon",
|
28
30
|
"Justin Lambert",
|
@@ -31,7 +33,7 @@ Gem::Specification.new do |s|
|
|
31
33
|
"Maarten van Vliet",
|
32
34
|
"Mario Visic",
|
33
35
|
"Adam Lavin",
|
34
|
-
"
|
36
|
+
"George Millo",
|
35
37
|
"Michael Mior",
|
36
38
|
"Miro Hron\xC4\x8Dok",
|
37
39
|
"Neamar",
|
@@ -40,12 +42,13 @@ Gem::Specification.new do |s|
|
|
40
42
|
"Daniel Chatfield",
|
41
43
|
"Piotr Sarnacki",
|
42
44
|
"Rapha\xC3\xABl Pinson",
|
45
|
+
"Rob Hoelz",
|
43
46
|
"Tobias Wilken",
|
44
47
|
"Zachary Gershman",
|
45
48
|
"Zachary Scott",
|
46
49
|
"jeffdh",
|
47
50
|
"john muhl",
|
48
|
-
"
|
51
|
+
"Benjamin Manns",
|
49
52
|
"Jacob Burkhart"
|
50
53
|
]
|
51
54
|
|
@@ -59,10 +62,12 @@ Gem::Specification.new do |s|
|
|
59
62
|
"p.morsou@gmail.com",
|
60
63
|
"peter.van.dijk@netherlabs.nl",
|
61
64
|
"i.am@anhero.ru",
|
62
|
-
"dan@meatballhat.com",
|
63
65
|
"me@xjunior.me",
|
66
|
+
"dan@meatballhat.com",
|
64
67
|
"meyer@paperplanes.de",
|
65
68
|
"dev+narwen+rkh@rkh.im",
|
69
|
+
"at@an-ti.eu",
|
70
|
+
"me@jhass.eu",
|
66
71
|
"josh.kalderimis@gmail.com",
|
67
72
|
"julia.simon@biicode.com",
|
68
73
|
"jlambert@eml.cc",
|
@@ -71,7 +76,7 @@ Gem::Specification.new do |s|
|
|
71
76
|
"maartenvanvliet@gmail.com",
|
72
77
|
"mario@mariovisic.com",
|
73
78
|
"adam@lavoaster.co.uk",
|
74
|
-
"
|
79
|
+
"georgejulianmillo@gmail.com",
|
75
80
|
"mmior@uwaterloo.ca",
|
76
81
|
"miro@hroncok.cz",
|
77
82
|
"neamar@neamar.fr",
|
@@ -80,12 +85,13 @@ Gem::Specification.new do |s|
|
|
80
85
|
"chatfielddaniel@gmail.com",
|
81
86
|
"drogus@gmail.com",
|
82
87
|
"raphael.pinson@camptocamp.com",
|
88
|
+
"rob@hoelz.ro",
|
83
89
|
"tw@cloudcontrol.de",
|
84
90
|
"pair+zg@pivotallabs.com",
|
85
91
|
"e@zzak.io",
|
86
92
|
"jeffdh@gmail.com",
|
87
93
|
"git@johnmuhl.com",
|
88
|
-
"
|
94
|
+
"benmanns@gmail.com",
|
89
95
|
"jburkhart@engineyard.com"
|
90
96
|
]
|
91
97
|
|
@@ -168,6 +174,7 @@ Gem::Specification.new do |s|
|
|
168
174
|
"lib/travis/cli/setup/cloud_control.rb",
|
169
175
|
"lib/travis/cli/setup/cloud_files.rb",
|
170
176
|
"lib/travis/cli/setup/cloud_foundry.rb",
|
177
|
+
"lib/travis/cli/setup/code_deploy.rb",
|
171
178
|
"lib/travis/cli/setup/deis.rb",
|
172
179
|
"lib/travis/cli/setup/divshot.rb",
|
173
180
|
"lib/travis/cli/setup/elastic_beanstalk.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: travis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.5
|
4
|
+
version: 1.7.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -12,10 +12,12 @@ authors:
|
|
12
12
|
- Peter Souter
|
13
13
|
- Peter van Dijk
|
14
14
|
- Max Barnash
|
15
|
-
- Dan Buch
|
16
15
|
- Carlos Palhares
|
16
|
+
- Dan Buch
|
17
17
|
- Mathias Meyer
|
18
18
|
- Thais Camilo and Konstantin Haase
|
19
|
+
- Andreas Tiefenthaler
|
20
|
+
- Jonne Haß
|
19
21
|
- Josh Kalderimis
|
20
22
|
- Julia S.Simon
|
21
23
|
- Justin Lambert
|
@@ -24,7 +26,7 @@ authors:
|
|
24
26
|
- Maarten van Vliet
|
25
27
|
- Mario Visic
|
26
28
|
- Adam Lavin
|
27
|
-
-
|
29
|
+
- George Millo
|
28
30
|
- Michael Mior
|
29
31
|
- Miro Hrončok
|
30
32
|
- Neamar
|
@@ -33,216 +35,217 @@ authors:
|
|
33
35
|
- Daniel Chatfield
|
34
36
|
- Piotr Sarnacki
|
35
37
|
- Raphaël Pinson
|
38
|
+
- Rob Hoelz
|
36
39
|
- Tobias Wilken
|
37
40
|
- Zachary Gershman
|
38
41
|
- Zachary Scott
|
39
42
|
- jeffdh
|
40
43
|
- john muhl
|
41
|
-
-
|
44
|
+
- Benjamin Manns
|
42
45
|
- Jacob Burkhart
|
43
46
|
autorequire:
|
44
47
|
bindir: bin
|
45
48
|
cert_chain: []
|
46
|
-
date:
|
49
|
+
date: 2015-01-15 00:00:00.000000000 Z
|
47
50
|
dependencies:
|
48
51
|
- !ruby/object:Gem::Dependency
|
49
52
|
name: faraday
|
50
53
|
requirement: !ruby/object:Gem::Requirement
|
51
54
|
requirements:
|
52
|
-
- - ~>
|
55
|
+
- - "~>"
|
53
56
|
- !ruby/object:Gem::Version
|
54
57
|
version: '0.9'
|
55
58
|
type: :runtime
|
56
59
|
prerelease: false
|
57
60
|
version_requirements: !ruby/object:Gem::Requirement
|
58
61
|
requirements:
|
59
|
-
- - ~>
|
62
|
+
- - "~>"
|
60
63
|
- !ruby/object:Gem::Version
|
61
64
|
version: '0.9'
|
62
65
|
- !ruby/object:Gem::Dependency
|
63
66
|
name: faraday_middleware
|
64
67
|
requirement: !ruby/object:Gem::Requirement
|
65
68
|
requirements:
|
66
|
-
- - ~>
|
69
|
+
- - "~>"
|
67
70
|
- !ruby/object:Gem::Version
|
68
71
|
version: '0.9'
|
69
|
-
- -
|
72
|
+
- - ">="
|
70
73
|
- !ruby/object:Gem::Version
|
71
74
|
version: 0.9.1
|
72
75
|
type: :runtime
|
73
76
|
prerelease: false
|
74
77
|
version_requirements: !ruby/object:Gem::Requirement
|
75
78
|
requirements:
|
76
|
-
- - ~>
|
79
|
+
- - "~>"
|
77
80
|
- !ruby/object:Gem::Version
|
78
81
|
version: '0.9'
|
79
|
-
- -
|
82
|
+
- - ">="
|
80
83
|
- !ruby/object:Gem::Version
|
81
84
|
version: 0.9.1
|
82
85
|
- !ruby/object:Gem::Dependency
|
83
86
|
name: highline
|
84
87
|
requirement: !ruby/object:Gem::Requirement
|
85
88
|
requirements:
|
86
|
-
- - ~>
|
89
|
+
- - "~>"
|
87
90
|
- !ruby/object:Gem::Version
|
88
91
|
version: '1.6'
|
89
92
|
type: :runtime
|
90
93
|
prerelease: false
|
91
94
|
version_requirements: !ruby/object:Gem::Requirement
|
92
95
|
requirements:
|
93
|
-
- - ~>
|
96
|
+
- - "~>"
|
94
97
|
- !ruby/object:Gem::Version
|
95
98
|
version: '1.6'
|
96
99
|
- !ruby/object:Gem::Dependency
|
97
100
|
name: backports
|
98
101
|
requirement: !ruby/object:Gem::Requirement
|
99
102
|
requirements:
|
100
|
-
- -
|
103
|
+
- - ">="
|
101
104
|
- !ruby/object:Gem::Version
|
102
105
|
version: '0'
|
103
106
|
type: :runtime
|
104
107
|
prerelease: false
|
105
108
|
version_requirements: !ruby/object:Gem::Requirement
|
106
109
|
requirements:
|
107
|
-
- -
|
110
|
+
- - ">="
|
108
111
|
- !ruby/object:Gem::Version
|
109
112
|
version: '0'
|
110
113
|
- !ruby/object:Gem::Dependency
|
111
114
|
name: gh
|
112
115
|
requirement: !ruby/object:Gem::Requirement
|
113
116
|
requirements:
|
114
|
-
- - ~>
|
117
|
+
- - "~>"
|
115
118
|
- !ruby/object:Gem::Version
|
116
119
|
version: '0.13'
|
117
120
|
type: :runtime
|
118
121
|
prerelease: false
|
119
122
|
version_requirements: !ruby/object:Gem::Requirement
|
120
123
|
requirements:
|
121
|
-
- - ~>
|
124
|
+
- - "~>"
|
122
125
|
- !ruby/object:Gem::Version
|
123
126
|
version: '0.13'
|
124
127
|
- !ruby/object:Gem::Dependency
|
125
128
|
name: launchy
|
126
129
|
requirement: !ruby/object:Gem::Requirement
|
127
130
|
requirements:
|
128
|
-
- - ~>
|
131
|
+
- - "~>"
|
129
132
|
- !ruby/object:Gem::Version
|
130
133
|
version: '2.1'
|
131
134
|
type: :runtime
|
132
135
|
prerelease: false
|
133
136
|
version_requirements: !ruby/object:Gem::Requirement
|
134
137
|
requirements:
|
135
|
-
- - ~>
|
138
|
+
- - "~>"
|
136
139
|
- !ruby/object:Gem::Version
|
137
140
|
version: '2.1'
|
138
141
|
- !ruby/object:Gem::Dependency
|
139
142
|
name: pry
|
140
143
|
requirement: !ruby/object:Gem::Requirement
|
141
144
|
requirements:
|
142
|
-
- - <
|
145
|
+
- - "<"
|
143
146
|
- !ruby/object:Gem::Version
|
144
147
|
version: '0.10'
|
145
|
-
- - ~>
|
148
|
+
- - "~>"
|
146
149
|
- !ruby/object:Gem::Version
|
147
150
|
version: '0.9'
|
148
151
|
type: :runtime
|
149
152
|
prerelease: false
|
150
153
|
version_requirements: !ruby/object:Gem::Requirement
|
151
154
|
requirements:
|
152
|
-
- - <
|
155
|
+
- - "<"
|
153
156
|
- !ruby/object:Gem::Version
|
154
157
|
version: '0.10'
|
155
|
-
- - ~>
|
158
|
+
- - "~>"
|
156
159
|
- !ruby/object:Gem::Version
|
157
160
|
version: '0.9'
|
158
161
|
- !ruby/object:Gem::Dependency
|
159
162
|
name: typhoeus
|
160
163
|
requirement: !ruby/object:Gem::Requirement
|
161
164
|
requirements:
|
162
|
-
- - ~>
|
165
|
+
- - "~>"
|
163
166
|
- !ruby/object:Gem::Version
|
164
167
|
version: '0.6'
|
165
|
-
- -
|
168
|
+
- - ">="
|
166
169
|
- !ruby/object:Gem::Version
|
167
170
|
version: 0.6.8
|
168
171
|
type: :runtime
|
169
172
|
prerelease: false
|
170
173
|
version_requirements: !ruby/object:Gem::Requirement
|
171
174
|
requirements:
|
172
|
-
- - ~>
|
175
|
+
- - "~>"
|
173
176
|
- !ruby/object:Gem::Version
|
174
177
|
version: '0.6'
|
175
|
-
- -
|
178
|
+
- - ">="
|
176
179
|
- !ruby/object:Gem::Version
|
177
180
|
version: 0.6.8
|
178
181
|
- !ruby/object:Gem::Dependency
|
179
182
|
name: pusher-client
|
180
183
|
requirement: !ruby/object:Gem::Requirement
|
181
184
|
requirements:
|
182
|
-
- - ~>
|
185
|
+
- - "~>"
|
183
186
|
- !ruby/object:Gem::Version
|
184
187
|
version: '0.4'
|
185
188
|
type: :runtime
|
186
189
|
prerelease: false
|
187
190
|
version_requirements: !ruby/object:Gem::Requirement
|
188
191
|
requirements:
|
189
|
-
- - ~>
|
192
|
+
- - "~>"
|
190
193
|
- !ruby/object:Gem::Version
|
191
194
|
version: '0.4'
|
192
195
|
- !ruby/object:Gem::Dependency
|
193
196
|
name: addressable
|
194
197
|
requirement: !ruby/object:Gem::Requirement
|
195
198
|
requirements:
|
196
|
-
- - ~>
|
199
|
+
- - "~>"
|
197
200
|
- !ruby/object:Gem::Version
|
198
201
|
version: '2.3'
|
199
202
|
type: :runtime
|
200
203
|
prerelease: false
|
201
204
|
version_requirements: !ruby/object:Gem::Requirement
|
202
205
|
requirements:
|
203
|
-
- - ~>
|
206
|
+
- - "~>"
|
204
207
|
- !ruby/object:Gem::Version
|
205
208
|
version: '2.3'
|
206
209
|
- !ruby/object:Gem::Dependency
|
207
210
|
name: rspec
|
208
211
|
requirement: !ruby/object:Gem::Requirement
|
209
212
|
requirements:
|
210
|
-
- - ~>
|
213
|
+
- - "~>"
|
211
214
|
- !ruby/object:Gem::Version
|
212
215
|
version: '2.12'
|
213
216
|
type: :development
|
214
217
|
prerelease: false
|
215
218
|
version_requirements: !ruby/object:Gem::Requirement
|
216
219
|
requirements:
|
217
|
-
- - ~>
|
220
|
+
- - "~>"
|
218
221
|
- !ruby/object:Gem::Version
|
219
222
|
version: '2.12'
|
220
223
|
- !ruby/object:Gem::Dependency
|
221
224
|
name: sinatra
|
222
225
|
requirement: !ruby/object:Gem::Requirement
|
223
226
|
requirements:
|
224
|
-
- - ~>
|
227
|
+
- - "~>"
|
225
228
|
- !ruby/object:Gem::Version
|
226
229
|
version: '1.3'
|
227
230
|
type: :development
|
228
231
|
prerelease: false
|
229
232
|
version_requirements: !ruby/object:Gem::Requirement
|
230
233
|
requirements:
|
231
|
-
- - ~>
|
234
|
+
- - "~>"
|
232
235
|
- !ruby/object:Gem::Version
|
233
236
|
version: '1.3'
|
234
237
|
- !ruby/object:Gem::Dependency
|
235
238
|
name: rack-test
|
236
239
|
requirement: !ruby/object:Gem::Requirement
|
237
240
|
requirements:
|
238
|
-
- - ~>
|
241
|
+
- - "~>"
|
239
242
|
- !ruby/object:Gem::Version
|
240
243
|
version: '0.6'
|
241
244
|
type: :development
|
242
245
|
prerelease: false
|
243
246
|
version_requirements: !ruby/object:Gem::Requirement
|
244
247
|
requirements:
|
245
|
-
- - ~>
|
248
|
+
- - "~>"
|
246
249
|
- !ruby/object:Gem::Version
|
247
250
|
version: '0.6'
|
248
251
|
description: CLI and Ruby client library for Travis CI
|
@@ -255,10 +258,12 @@ email:
|
|
255
258
|
- p.morsou@gmail.com
|
256
259
|
- peter.van.dijk@netherlabs.nl
|
257
260
|
- i.am@anhero.ru
|
258
|
-
- dan@meatballhat.com
|
259
261
|
- me@xjunior.me
|
262
|
+
- dan@meatballhat.com
|
260
263
|
- meyer@paperplanes.de
|
261
264
|
- dev+narwen+rkh@rkh.im
|
265
|
+
- at@an-ti.eu
|
266
|
+
- me@jhass.eu
|
262
267
|
- josh.kalderimis@gmail.com
|
263
268
|
- julia.simon@biicode.com
|
264
269
|
- jlambert@eml.cc
|
@@ -267,7 +272,7 @@ email:
|
|
267
272
|
- maartenvanvliet@gmail.com
|
268
273
|
- mario@mariovisic.com
|
269
274
|
- adam@lavoaster.co.uk
|
270
|
-
-
|
275
|
+
- georgejulianmillo@gmail.com
|
271
276
|
- mmior@uwaterloo.ca
|
272
277
|
- miro@hroncok.cz
|
273
278
|
- neamar@neamar.fr
|
@@ -276,12 +281,13 @@ email:
|
|
276
281
|
- chatfielddaniel@gmail.com
|
277
282
|
- drogus@gmail.com
|
278
283
|
- raphael.pinson@camptocamp.com
|
284
|
+
- rob@hoelz.ro
|
279
285
|
- tw@cloudcontrol.de
|
280
286
|
- pair+zg@pivotallabs.com
|
281
287
|
- e@zzak.io
|
282
288
|
- jeffdh@gmail.com
|
283
289
|
- git@johnmuhl.com
|
284
|
-
-
|
290
|
+
- benmanns@gmail.com
|
285
291
|
- jburkhart@engineyard.com
|
286
292
|
executables:
|
287
293
|
- travis
|
@@ -365,6 +371,7 @@ files:
|
|
365
371
|
- lib/travis/cli/setup/cloud_control.rb
|
366
372
|
- lib/travis/cli/setup/cloud_files.rb
|
367
373
|
- lib/travis/cli/setup/cloud_foundry.rb
|
374
|
+
- lib/travis/cli/setup/code_deploy.rb
|
368
375
|
- lib/travis/cli/setup/deis.rb
|
369
376
|
- lib/travis/cli/setup/divshot.rb
|
370
377
|
- lib/travis/cli/setup/elastic_beanstalk.rb
|
@@ -477,17 +484,17 @@ require_paths:
|
|
477
484
|
- lib
|
478
485
|
required_ruby_version: !ruby/object:Gem::Requirement
|
479
486
|
requirements:
|
480
|
-
- -
|
487
|
+
- - ">="
|
481
488
|
- !ruby/object:Gem::Version
|
482
489
|
version: '0'
|
483
490
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
484
491
|
requirements:
|
485
|
-
- -
|
492
|
+
- - ">="
|
486
493
|
- !ruby/object:Gem::Version
|
487
|
-
version:
|
494
|
+
version: '0'
|
488
495
|
requirements: []
|
489
496
|
rubyforge_project:
|
490
|
-
rubygems_version: 2.4.
|
497
|
+
rubygems_version: 2.4.3
|
491
498
|
signing_key:
|
492
499
|
specification_version: 4
|
493
500
|
summary: Travis CI client
|