travis 1.7.2.travis.636.5 → 1.7.2
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 +5 -3
- data/assets/travis.sh +3 -3
- data/lib/travis/cli/setup/elastic_beanstalk.rb +23 -0
- data/lib/travis/version.rb +1 -1
- data/travis.gemspec +22 -19
- metadata +57 -53
checksums.yaml
CHANGED
@@ -1,15 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
OTkyOGYzYjk1Yjg1ZjM3NWUwNTZiMDQyNDg2Y2E2NmY0MTYwNzNlOA==
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 201defea93ad5100578a3a808b00111cae1b7246
|
4
|
+
data.tar.gz: 2167d559eb5ac77445e8d67606eeef960e47177b
|
7
5
|
SHA512:
|
8
|
-
metadata.gz:
|
9
|
-
|
10
|
-
MzYyZDM0MTA2ZTM5ZjlmNThlMWUxZmYxMDY2YmUzYWY3NjNlMTYxZjNkNGUx
|
11
|
-
ZGNjMTc4YzU2MGVhN2FlZDNjODAyYmI0MTczNmY5NzYyNzk1N2I=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
Nzc0ODQ2YmE0NWFiNjVmYzQ0YTc1ZTdlYmQxZTRjZTFkZTY3ZWVjMWM5NGNm
|
14
|
-
NzllZjZiYmY3ZWRkYzM1ZTRkY2YyNmIzNmJjYWI4NjA1ZTU2MTVhMmQ2YjFh
|
15
|
-
OGRmYWEzMWE4NjhkMjNjOWFiNDRhZjBjOWU3OWM1N2IwMDEzOGM=
|
6
|
+
metadata.gz: 53303d92556cdb889ea7edd6114dc2221700a5df2faae57a76b53e84f89719b8304703dfd66745ca405d129aa7f5a3703df3f6e71b07bfd5e5ec6f25312960ae
|
7
|
+
data.tar.gz: 0e8e82ba83888af6d2ea0f90e7db5c7ca9e418a2030e6cfcc3817d4874144c58ea8ef43ed90c2895dd87823b4dd1e6b9ead160432608cef5ebf51bd0ed8d63e0
|
data/README.md
CHANGED
@@ -1964,12 +1964,12 @@ You can check your Ruby version by running `ruby -v`:
|
|
1964
1964
|
|
1965
1965
|
Then run:
|
1966
1966
|
|
1967
|
-
$ gem install travis -v 1.7.
|
1967
|
+
$ gem install travis -v 1.7.2 --no-rdoc --no-ri
|
1968
1968
|
|
1969
1969
|
Now make sure everything is working:
|
1970
1970
|
|
1971
1971
|
$ travis version
|
1972
|
-
1.7.
|
1972
|
+
1.7.2
|
1973
1973
|
|
1974
1974
|
See also [Note on Ubuntu](#note-on-ubuntu) below.
|
1975
1975
|
|
@@ -2058,7 +2058,7 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
2058
2058
|
|
2059
2059
|
## Version History
|
2060
2060
|
|
2061
|
-
**1.7.2** (
|
2061
|
+
**1.7.2** (September 17, 2014)
|
2062
2062
|
|
2063
2063
|
* Add `travis setup elasticbeanstalk`.
|
2064
2064
|
* Properly display educational accounts in `travis accounts`.
|
@@ -2066,6 +2066,8 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
|
|
2066
2066
|
* Fix SSL verification issue on OS X Yesomite and certain Linux setups.
|
2067
2067
|
* Be more forgiving with outdated API version (Enterprise).
|
2068
2068
|
* Better handling of multibyte characters in archived logs.
|
2069
|
+
* Use more restricitve permissions for the config file.
|
2070
|
+
* Bump up default go version used by `travis init`.
|
2069
2071
|
|
2070
2072
|
**1.7.1** (August 9, 2014)
|
2071
2073
|
|
data/assets/travis.sh
CHANGED
@@ -21,7 +21,7 @@ if type compdef 1>/dev/null 2>/dev/null; then
|
|
21
21
|
compdef _travis travis
|
22
22
|
_travis() { _travis_complete $((${#words} - 1)) "${words[2]}"; }
|
23
23
|
_travis_commands() { list=(accounts:"displays accounts and their subscription status" branches:"displays the most recent build for each branch" cache:"lists or deletes repository caches" cancel:"cancels a job or build" console:"interactive shell" disable:"disables a project" enable:"enables a project" encrypt:"encrypts values for the .travis.yml" encrypt-file:"encrypts a file and adds decryption steps to .travis.yml" endpoint:"displays or changes the API endpoint" env:"show or modify build environment variables" help:"helps you out when in dire need of information" history:"displays a projects build history" init:"generates a .travis.yml and enables the project" lint:"display warnings for a .travis.yml" login:"authenticates against the API and stores the token" logout:"deletes the stored API token" logs:"streams test logs" monitor:"live monitor for what's going on" open:"opens a build or job in the browser" pubkey:"prints out a repository's public key" raw:"makes an (authenticated) API call and prints out the result" report:"generates a report useful for filing issues" repos:"lists repositories the user has certain permissions on" requests:"lists recent requests" restart:"restarts a build or job" settings:"access repository settings" setup:"sets up an addon or deploy target" show:"displays a build or job" sshkey:"checks, updates or deletes an SSH key" status:"checks status of the latest build" sync:"triggers a new sync with GitHub" token:"outputs the secret API token" version:"outputs the client version" whatsup:"lists most recent builds" whoami:"outputs the current user") _describe -t common-commands 'common commands' list; }
|
24
|
-
_travis_setup() { list=(appfog:"automatic deployment to Appfog" artifacts:"automatic artifact shipping to S3" cloudcontrol:"automatic deployment to cloudControl" cloudfiles:"automatic pushing to Rackspace Cloud Files" cloudfoundry:"automatic deployment to Cloud Foundry" cloud66:"Automatic deployment to Cloud 66" deis:"automatic deployment to a deis app" divshot:"deployment to Divshot.io" engineyard:"automatic deployment to Engine Yard" gcs:"automatic pushing to Google Cloud Storage" hackage:"automatic deployment of hackage packages" heroku:"automatic deployment to Heroku" modulus:"deployment to Modulus" npm:"automatic release to NPM" ninefold:"Automatic deployment to Ninefold" nodejitsu:"automatic deployment to Nodejitsu" openshift:"automatic deployment to OpenShfit" opsworks:"deployment to OpsWorks" pypi:"automatic deployment to PyPI" releases:"Upload Assets to GitHub Releases" rubygems:"automatic release to RubyGems" s3:"automatic pushing to S3" sauce_connect:"Sauce Connet addon for Sauce Labs integration") _describe -t common-commands 'common commands' list; }
|
24
|
+
_travis_setup() { list=(appfog:"automatic deployment to Appfog" artifacts:"automatic artifact shipping to S3" cloudcontrol:"automatic deployment to cloudControl" cloudfiles:"automatic pushing to Rackspace Cloud Files" cloudfoundry:"automatic deployment to Cloud Foundry" cloud66:"Automatic deployment to Cloud 66" deis:"automatic deployment to a deis app" divshot:"deployment to Divshot.io" elasticbeanstalk:"deployment to AWS Elastic Beanstalk" engineyard:"automatic deployment to Engine Yard" gcs:"automatic pushing to Google Cloud Storage" hackage:"automatic deployment of hackage packages" heroku:"automatic deployment to Heroku" modulus:"deployment to Modulus" npm:"automatic release to NPM" ninefold:"Automatic deployment to Ninefold" nodejitsu:"automatic deployment to Nodejitsu" openshift:"automatic deployment to OpenShfit" opsworks:"deployment to OpsWorks" pypi:"automatic deployment to PyPI" releases:"Upload Assets to GitHub Releases" rubygems:"automatic release to RubyGems" s3:"automatic pushing to S3" sauce_connect:"Sauce Connet addon for Sauce Labs integration") _describe -t common-commands 'common commands' list; }
|
25
25
|
_travis_settings() { list=(builds_only_with_travis_yml:"Only run builds with a .travis.yml" build_pushes:"Build pushes" build_pull_requests:"Build pull requests" maximum_number_of_builds:"Maximum number of concurrent builds") _describe -t common-commands 'common commands' list; }
|
26
26
|
_travis_init() { list=(c:'initialize c project' clojure:'initialize clojure project' cpp:'initialize cpp project' erlang:'initialize erlang project' go:'initialize go project' groovy:'initialize groovy project' haskell:'initialize haskell project' java:'initialize java project' node_js:'initialize node_js project' objective-c:'initialize objective-c project' perl:'initialize perl project' php:'initialize php project' python:'initialize python project' ruby:'initialize ruby project' scala:'initialize scala project') _describe -t common-commands 'common commands' list; }
|
27
27
|
_travis_option() {
|
@@ -68,7 +68,7 @@ elif type compctl 1>/dev/null 2>/dev/null; then
|
|
68
68
|
compctl -K _travis travis
|
69
69
|
_travis() { read -cA words && _travis_complete $((${#words} - 1)) "${words[2]}"; }
|
70
70
|
_travis_commands() { reply=("accounts" "branches" "cache" "cancel" "console" "disable" "enable" "encrypt" "encrypt-file" "endpoint" "env" "help" "history" "init" "lint" "login" "logout" "logs" "monitor" "open" "pubkey" "raw" "report" "repos" "requests" "restart" "settings" "setup" "show" "sshkey" "status" "sync" "token" "version" "whatsup" "whoami"); }
|
71
|
-
_travis_setup() { reply=("appfog" "artifacts" "cloudcontrol" "cloudfiles" "cloudfoundry" "cloud66" "deis" "divshot" "engineyard" "gcs" "hackage" "heroku" "modulus" "npm" "ninefold" "nodejitsu" "openshift" "opsworks" "pypi" "releases" "rubygems" "s3" "sauce_connect"); }
|
71
|
+
_travis_setup() { reply=("appfog" "artifacts" "cloudcontrol" "cloudfiles" "cloudfoundry" "cloud66" "deis" "divshot" "elasticbeanstalk" "engineyard" "gcs" "hackage" "heroku" "modulus" "npm" "ninefold" "nodejitsu" "openshift" "opsworks" "pypi" "releases" "rubygems" "s3" "sauce_connect"); }
|
72
72
|
_travis_settings() { reply=(builds_only_with_travis_yml build_pushes build_pull_requests maximum_number_of_builds); }
|
73
73
|
_travis_init() { reply=("c" "clojure" "cpp" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"); }
|
74
74
|
_travis_option() {
|
@@ -115,7 +115,7 @@ elif type complete 1>/dev/null 2>/dev/null; then
|
|
115
115
|
complete -F _travis travis
|
116
116
|
_travis() { _travis_complete "$COMP_CWORD" "${COMP_WORDS[1]}"; }
|
117
117
|
_travis_commands() { COMPREPLY=( $(compgen -W "accounts branches cache cancel console disable enable encrypt encrypt-file endpoint env help history init lint login logout logs monitor open pubkey raw report repos requests restart settings setup show sshkey status sync token version whatsup whoami" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
118
|
-
_travis_setup() { COMPREPLY=( $(compgen -W "appfog artifacts cloudcontrol cloudfiles cloudfoundry cloud66 deis divshot engineyard gcs hackage heroku modulus npm ninefold nodejitsu openshift opsworks pypi releases rubygems s3 sauce_connect" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
118
|
+
_travis_setup() { COMPREPLY=( $(compgen -W "appfog artifacts cloudcontrol cloudfiles cloudfoundry cloud66 deis divshot elasticbeanstalk engineyard gcs hackage heroku modulus npm ninefold nodejitsu openshift opsworks pypi releases rubygems s3 sauce_connect" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
119
119
|
_travis_settings() { COMPREPLY=( $(compgen -W "builds_only_with_travis_yml build_pushes build_pull_requests maximum_number_of_builds" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
120
120
|
_travis_init() { COMPREPLY=( $(compgen -W ""c" "clojure" "cpp" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
121
121
|
_travis_option() {
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'travis/cli/setup'
|
2
|
+
|
3
|
+
module Travis
|
4
|
+
module CLI
|
5
|
+
class Setup
|
6
|
+
class ElasticBeanstalk < Service
|
7
|
+
description "deployment to AWS Elastic Beanstalk"
|
8
|
+
|
9
|
+
def run
|
10
|
+
deploy 'elasticbeanstalk' do |config|
|
11
|
+
config['access_key_id'] = ask("Access key ID: ").to_s
|
12
|
+
config['secret_access_key'] = ask("Secret access key: ") { |q| q.echo = "*" }.to_s
|
13
|
+
config['region'] = ask("Elastic Beanstalk region: ") {|q| q.default = 'us-east-1'}.to_s
|
14
|
+
config['app'] = ask("Elastic Beanstalk application name: ").to_s
|
15
|
+
config['env'] = ask("Elastic Beanstalk environment to update: ").to_s
|
16
|
+
|
17
|
+
encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
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.2"
|
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,31 +19,32 @@ Gem::Specification.new do |s|
|
|
19
19
|
"Peter Souter",
|
20
20
|
"Peter van Dijk",
|
21
21
|
"Max Barnash",
|
22
|
-
"
|
22
|
+
"Dan Buch",
|
23
23
|
"Mathias Meyer",
|
24
|
+
"Carlos Palhares",
|
24
25
|
"Thais Camilo and Konstantin Haase",
|
25
26
|
"Justin Lambert",
|
26
|
-
"
|
27
|
+
"Adam Lavin",
|
27
28
|
"Laurent Petit",
|
28
29
|
"Maarten van Vliet",
|
29
30
|
"Mario Visic",
|
31
|
+
"john muhl",
|
32
|
+
"Adrien Brault",
|
33
|
+
"Michael Mior",
|
30
34
|
"Miro Hron\xC4\x8Dok",
|
31
35
|
"Neamar",
|
32
36
|
"Nicolas Bessi (nbessi)",
|
37
|
+
"Benjamin Manns",
|
38
|
+
"Daniel Chatfield",
|
33
39
|
"Piotr Sarnacki",
|
34
40
|
"Rapha\xC3\xABl Pinson",
|
35
41
|
"Tobias Wilken",
|
36
42
|
"Zachary Gershman",
|
37
43
|
"Zachary Scott",
|
38
44
|
"jeffdh",
|
39
|
-
"john muhl",
|
40
|
-
"Dan Buch",
|
41
|
-
"Adam Lavin",
|
42
|
-
"Daniel Chatfield",
|
43
|
-
"Benjamin Manns",
|
44
45
|
"Jacob Burkhart",
|
45
|
-
"
|
46
|
-
"
|
46
|
+
"Josh Kalderimis",
|
47
|
+
"Jonne Ha\xC3\x9F"
|
47
48
|
]
|
48
49
|
|
49
50
|
# generated from git shortlog -sne
|
@@ -56,31 +57,32 @@ Gem::Specification.new do |s|
|
|
56
57
|
"p.morsou@gmail.com",
|
57
58
|
"peter.van.dijk@netherlabs.nl",
|
58
59
|
"i.am@anhero.ru",
|
59
|
-
"
|
60
|
+
"dan@meatballhat.com",
|
60
61
|
"meyer@paperplanes.de",
|
62
|
+
"me@xjunior.me",
|
61
63
|
"dev+narwen+rkh@rkh.im",
|
62
64
|
"jlambert@eml.cc",
|
63
|
-
"
|
65
|
+
"adam@lavoaster.co.uk",
|
64
66
|
"laurent.petit@gmail.com",
|
65
67
|
"maartenvanvliet@gmail.com",
|
66
68
|
"mario@mariovisic.com",
|
69
|
+
"git@johnmuhl.com",
|
70
|
+
"adrien.brault@gmail.com",
|
71
|
+
"mmior@uwaterloo.ca",
|
67
72
|
"miro@hroncok.cz",
|
68
73
|
"neamar@neamar.fr",
|
69
74
|
"nbessi@users.noreply.github.com",
|
75
|
+
"benmanns@gmail.com",
|
76
|
+
"chatfielddaniel@gmail.com",
|
70
77
|
"drogus@gmail.com",
|
71
78
|
"raphael.pinson@camptocamp.com",
|
72
79
|
"tw@cloudcontrol.de",
|
73
80
|
"pair+zg@pivotallabs.com",
|
74
81
|
"e@zzak.io",
|
75
82
|
"jeffdh@gmail.com",
|
76
|
-
"git@johnmuhl.com",
|
77
|
-
"dan@meatballhat.com",
|
78
|
-
"adam@lavoaster.co.uk",
|
79
|
-
"chatfielddaniel@gmail.com",
|
80
|
-
"benmanns@gmail.com",
|
81
83
|
"jburkhart@engineyard.com",
|
82
|
-
"
|
83
|
-
"
|
84
|
+
"josh.kalderimis@gmail.com",
|
85
|
+
"me@jhass.eu"
|
84
86
|
]
|
85
87
|
|
86
88
|
# generated from git ls-files
|
@@ -163,6 +165,7 @@ Gem::Specification.new do |s|
|
|
163
165
|
"lib/travis/cli/setup/cloud_foundry.rb",
|
164
166
|
"lib/travis/cli/setup/deis.rb",
|
165
167
|
"lib/travis/cli/setup/divshot.rb",
|
168
|
+
"lib/travis/cli/setup/elastic_beanstalk.rb",
|
166
169
|
"lib/travis/cli/setup/engine_yard.rb",
|
167
170
|
"lib/travis/cli/setup/gcs.rb",
|
168
171
|
"lib/travis/cli/setup/hackage.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.2
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -12,31 +12,32 @@ authors:
|
|
12
12
|
- Peter Souter
|
13
13
|
- Peter van Dijk
|
14
14
|
- Max Barnash
|
15
|
-
-
|
15
|
+
- Dan Buch
|
16
16
|
- Mathias Meyer
|
17
|
+
- Carlos Palhares
|
17
18
|
- Thais Camilo and Konstantin Haase
|
18
19
|
- Justin Lambert
|
19
|
-
-
|
20
|
+
- Adam Lavin
|
20
21
|
- Laurent Petit
|
21
22
|
- Maarten van Vliet
|
22
23
|
- Mario Visic
|
24
|
+
- john muhl
|
25
|
+
- Adrien Brault
|
26
|
+
- Michael Mior
|
23
27
|
- Miro Hrončok
|
24
28
|
- Neamar
|
25
29
|
- Nicolas Bessi (nbessi)
|
30
|
+
- Benjamin Manns
|
31
|
+
- Daniel Chatfield
|
26
32
|
- Piotr Sarnacki
|
27
33
|
- Raphaël Pinson
|
28
34
|
- Tobias Wilken
|
29
35
|
- Zachary Gershman
|
30
36
|
- Zachary Scott
|
31
37
|
- jeffdh
|
32
|
-
- john muhl
|
33
|
-
- Dan Buch
|
34
|
-
- Adam Lavin
|
35
|
-
- Daniel Chatfield
|
36
|
-
- Benjamin Manns
|
37
38
|
- Jacob Burkhart
|
38
|
-
- Jonne Haß
|
39
39
|
- Josh Kalderimis
|
40
|
+
- Jonne Haß
|
40
41
|
autorequire:
|
41
42
|
bindir: bin
|
42
43
|
cert_chain: []
|
@@ -46,200 +47,200 @@ dependencies:
|
|
46
47
|
name: faraday
|
47
48
|
requirement: !ruby/object:Gem::Requirement
|
48
49
|
requirements:
|
49
|
-
- - ~>
|
50
|
+
- - "~>"
|
50
51
|
- !ruby/object:Gem::Version
|
51
52
|
version: '0.9'
|
52
53
|
type: :runtime
|
53
54
|
prerelease: false
|
54
55
|
version_requirements: !ruby/object:Gem::Requirement
|
55
56
|
requirements:
|
56
|
-
- - ~>
|
57
|
+
- - "~>"
|
57
58
|
- !ruby/object:Gem::Version
|
58
59
|
version: '0.9'
|
59
60
|
- !ruby/object:Gem::Dependency
|
60
61
|
name: faraday_middleware
|
61
62
|
requirement: !ruby/object:Gem::Requirement
|
62
63
|
requirements:
|
63
|
-
- - ~>
|
64
|
+
- - "~>"
|
64
65
|
- !ruby/object:Gem::Version
|
65
66
|
version: '0.9'
|
66
|
-
- -
|
67
|
+
- - ">="
|
67
68
|
- !ruby/object:Gem::Version
|
68
69
|
version: 0.9.1
|
69
70
|
type: :runtime
|
70
71
|
prerelease: false
|
71
72
|
version_requirements: !ruby/object:Gem::Requirement
|
72
73
|
requirements:
|
73
|
-
- - ~>
|
74
|
+
- - "~>"
|
74
75
|
- !ruby/object:Gem::Version
|
75
76
|
version: '0.9'
|
76
|
-
- -
|
77
|
+
- - ">="
|
77
78
|
- !ruby/object:Gem::Version
|
78
79
|
version: 0.9.1
|
79
80
|
- !ruby/object:Gem::Dependency
|
80
81
|
name: highline
|
81
82
|
requirement: !ruby/object:Gem::Requirement
|
82
83
|
requirements:
|
83
|
-
- - ~>
|
84
|
+
- - "~>"
|
84
85
|
- !ruby/object:Gem::Version
|
85
86
|
version: '1.6'
|
86
87
|
type: :runtime
|
87
88
|
prerelease: false
|
88
89
|
version_requirements: !ruby/object:Gem::Requirement
|
89
90
|
requirements:
|
90
|
-
- - ~>
|
91
|
+
- - "~>"
|
91
92
|
- !ruby/object:Gem::Version
|
92
93
|
version: '1.6'
|
93
94
|
- !ruby/object:Gem::Dependency
|
94
95
|
name: backports
|
95
96
|
requirement: !ruby/object:Gem::Requirement
|
96
97
|
requirements:
|
97
|
-
- -
|
98
|
+
- - ">="
|
98
99
|
- !ruby/object:Gem::Version
|
99
100
|
version: '0'
|
100
101
|
type: :runtime
|
101
102
|
prerelease: false
|
102
103
|
version_requirements: !ruby/object:Gem::Requirement
|
103
104
|
requirements:
|
104
|
-
- -
|
105
|
+
- - ">="
|
105
106
|
- !ruby/object:Gem::Version
|
106
107
|
version: '0'
|
107
108
|
- !ruby/object:Gem::Dependency
|
108
109
|
name: gh
|
109
110
|
requirement: !ruby/object:Gem::Requirement
|
110
111
|
requirements:
|
111
|
-
- - ~>
|
112
|
+
- - "~>"
|
112
113
|
- !ruby/object:Gem::Version
|
113
114
|
version: '0.13'
|
114
115
|
type: :runtime
|
115
116
|
prerelease: false
|
116
117
|
version_requirements: !ruby/object:Gem::Requirement
|
117
118
|
requirements:
|
118
|
-
- - ~>
|
119
|
+
- - "~>"
|
119
120
|
- !ruby/object:Gem::Version
|
120
121
|
version: '0.13'
|
121
122
|
- !ruby/object:Gem::Dependency
|
122
123
|
name: launchy
|
123
124
|
requirement: !ruby/object:Gem::Requirement
|
124
125
|
requirements:
|
125
|
-
- - ~>
|
126
|
+
- - "~>"
|
126
127
|
- !ruby/object:Gem::Version
|
127
128
|
version: '2.1'
|
128
129
|
type: :runtime
|
129
130
|
prerelease: false
|
130
131
|
version_requirements: !ruby/object:Gem::Requirement
|
131
132
|
requirements:
|
132
|
-
- - ~>
|
133
|
+
- - "~>"
|
133
134
|
- !ruby/object:Gem::Version
|
134
135
|
version: '2.1'
|
135
136
|
- !ruby/object:Gem::Dependency
|
136
137
|
name: pry
|
137
138
|
requirement: !ruby/object:Gem::Requirement
|
138
139
|
requirements:
|
139
|
-
- - <
|
140
|
+
- - "<"
|
140
141
|
- !ruby/object:Gem::Version
|
141
142
|
version: '0.10'
|
142
|
-
- - ~>
|
143
|
+
- - "~>"
|
143
144
|
- !ruby/object:Gem::Version
|
144
145
|
version: '0.9'
|
145
146
|
type: :runtime
|
146
147
|
prerelease: false
|
147
148
|
version_requirements: !ruby/object:Gem::Requirement
|
148
149
|
requirements:
|
149
|
-
- - <
|
150
|
+
- - "<"
|
150
151
|
- !ruby/object:Gem::Version
|
151
152
|
version: '0.10'
|
152
|
-
- - ~>
|
153
|
+
- - "~>"
|
153
154
|
- !ruby/object:Gem::Version
|
154
155
|
version: '0.9'
|
155
156
|
- !ruby/object:Gem::Dependency
|
156
157
|
name: typhoeus
|
157
158
|
requirement: !ruby/object:Gem::Requirement
|
158
159
|
requirements:
|
159
|
-
- - ~>
|
160
|
+
- - "~>"
|
160
161
|
- !ruby/object:Gem::Version
|
161
162
|
version: '0.6'
|
162
|
-
- -
|
163
|
+
- - ">="
|
163
164
|
- !ruby/object:Gem::Version
|
164
165
|
version: 0.6.8
|
165
166
|
type: :runtime
|
166
167
|
prerelease: false
|
167
168
|
version_requirements: !ruby/object:Gem::Requirement
|
168
169
|
requirements:
|
169
|
-
- - ~>
|
170
|
+
- - "~>"
|
170
171
|
- !ruby/object:Gem::Version
|
171
172
|
version: '0.6'
|
172
|
-
- -
|
173
|
+
- - ">="
|
173
174
|
- !ruby/object:Gem::Version
|
174
175
|
version: 0.6.8
|
175
176
|
- !ruby/object:Gem::Dependency
|
176
177
|
name: pusher-client
|
177
178
|
requirement: !ruby/object:Gem::Requirement
|
178
179
|
requirements:
|
179
|
-
- - ~>
|
180
|
+
- - "~>"
|
180
181
|
- !ruby/object:Gem::Version
|
181
182
|
version: '0.4'
|
182
183
|
type: :runtime
|
183
184
|
prerelease: false
|
184
185
|
version_requirements: !ruby/object:Gem::Requirement
|
185
186
|
requirements:
|
186
|
-
- - ~>
|
187
|
+
- - "~>"
|
187
188
|
- !ruby/object:Gem::Version
|
188
189
|
version: '0.4'
|
189
190
|
- !ruby/object:Gem::Dependency
|
190
191
|
name: addressable
|
191
192
|
requirement: !ruby/object:Gem::Requirement
|
192
193
|
requirements:
|
193
|
-
- - ~>
|
194
|
+
- - "~>"
|
194
195
|
- !ruby/object:Gem::Version
|
195
196
|
version: '2.3'
|
196
197
|
type: :runtime
|
197
198
|
prerelease: false
|
198
199
|
version_requirements: !ruby/object:Gem::Requirement
|
199
200
|
requirements:
|
200
|
-
- - ~>
|
201
|
+
- - "~>"
|
201
202
|
- !ruby/object:Gem::Version
|
202
203
|
version: '2.3'
|
203
204
|
- !ruby/object:Gem::Dependency
|
204
205
|
name: rspec
|
205
206
|
requirement: !ruby/object:Gem::Requirement
|
206
207
|
requirements:
|
207
|
-
- - ~>
|
208
|
+
- - "~>"
|
208
209
|
- !ruby/object:Gem::Version
|
209
210
|
version: '2.12'
|
210
211
|
type: :development
|
211
212
|
prerelease: false
|
212
213
|
version_requirements: !ruby/object:Gem::Requirement
|
213
214
|
requirements:
|
214
|
-
- - ~>
|
215
|
+
- - "~>"
|
215
216
|
- !ruby/object:Gem::Version
|
216
217
|
version: '2.12'
|
217
218
|
- !ruby/object:Gem::Dependency
|
218
219
|
name: sinatra
|
219
220
|
requirement: !ruby/object:Gem::Requirement
|
220
221
|
requirements:
|
221
|
-
- - ~>
|
222
|
+
- - "~>"
|
222
223
|
- !ruby/object:Gem::Version
|
223
224
|
version: '1.3'
|
224
225
|
type: :development
|
225
226
|
prerelease: false
|
226
227
|
version_requirements: !ruby/object:Gem::Requirement
|
227
228
|
requirements:
|
228
|
-
- - ~>
|
229
|
+
- - "~>"
|
229
230
|
- !ruby/object:Gem::Version
|
230
231
|
version: '1.3'
|
231
232
|
- !ruby/object:Gem::Dependency
|
232
233
|
name: rack-test
|
233
234
|
requirement: !ruby/object:Gem::Requirement
|
234
235
|
requirements:
|
235
|
-
- - ~>
|
236
|
+
- - "~>"
|
236
237
|
- !ruby/object:Gem::Version
|
237
238
|
version: '0.6'
|
238
239
|
type: :development
|
239
240
|
prerelease: false
|
240
241
|
version_requirements: !ruby/object:Gem::Requirement
|
241
242
|
requirements:
|
242
|
-
- - ~>
|
243
|
+
- - "~>"
|
243
244
|
- !ruby/object:Gem::Version
|
244
245
|
version: '0.6'
|
245
246
|
description: CLI and Ruby client library for Travis CI
|
@@ -252,31 +253,32 @@ email:
|
|
252
253
|
- p.morsou@gmail.com
|
253
254
|
- peter.van.dijk@netherlabs.nl
|
254
255
|
- i.am@anhero.ru
|
255
|
-
-
|
256
|
+
- dan@meatballhat.com
|
256
257
|
- meyer@paperplanes.de
|
258
|
+
- me@xjunior.me
|
257
259
|
- dev+narwen+rkh@rkh.im
|
258
260
|
- jlambert@eml.cc
|
259
|
-
-
|
261
|
+
- adam@lavoaster.co.uk
|
260
262
|
- laurent.petit@gmail.com
|
261
263
|
- maartenvanvliet@gmail.com
|
262
264
|
- mario@mariovisic.com
|
265
|
+
- git@johnmuhl.com
|
266
|
+
- adrien.brault@gmail.com
|
267
|
+
- mmior@uwaterloo.ca
|
263
268
|
- miro@hroncok.cz
|
264
269
|
- neamar@neamar.fr
|
265
270
|
- nbessi@users.noreply.github.com
|
271
|
+
- benmanns@gmail.com
|
272
|
+
- chatfielddaniel@gmail.com
|
266
273
|
- drogus@gmail.com
|
267
274
|
- raphael.pinson@camptocamp.com
|
268
275
|
- tw@cloudcontrol.de
|
269
276
|
- pair+zg@pivotallabs.com
|
270
277
|
- e@zzak.io
|
271
278
|
- jeffdh@gmail.com
|
272
|
-
- git@johnmuhl.com
|
273
|
-
- dan@meatballhat.com
|
274
|
-
- adam@lavoaster.co.uk
|
275
|
-
- chatfielddaniel@gmail.com
|
276
|
-
- benmanns@gmail.com
|
277
279
|
- jburkhart@engineyard.com
|
278
|
-
- me@jhass.eu
|
279
280
|
- josh.kalderimis@gmail.com
|
281
|
+
- me@jhass.eu
|
280
282
|
executables:
|
281
283
|
- travis
|
282
284
|
extensions: []
|
@@ -360,6 +362,7 @@ files:
|
|
360
362
|
- lib/travis/cli/setup/cloud_foundry.rb
|
361
363
|
- lib/travis/cli/setup/deis.rb
|
362
364
|
- lib/travis/cli/setup/divshot.rb
|
365
|
+
- lib/travis/cli/setup/elastic_beanstalk.rb
|
363
366
|
- lib/travis/cli/setup/engine_yard.rb
|
364
367
|
- lib/travis/cli/setup/gcs.rb
|
365
368
|
- lib/travis/cli/setup/hackage.rb
|
@@ -469,18 +472,19 @@ require_paths:
|
|
469
472
|
- lib
|
470
473
|
required_ruby_version: !ruby/object:Gem::Requirement
|
471
474
|
requirements:
|
472
|
-
- -
|
475
|
+
- - ">="
|
473
476
|
- !ruby/object:Gem::Version
|
474
477
|
version: '0'
|
475
478
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
476
479
|
requirements:
|
477
|
-
- -
|
480
|
+
- - ">="
|
478
481
|
- !ruby/object:Gem::Version
|
479
|
-
version:
|
482
|
+
version: '0'
|
480
483
|
requirements: []
|
481
484
|
rubyforge_project:
|
482
|
-
rubygems_version: 2.
|
485
|
+
rubygems_version: 2.2.2
|
483
486
|
signing_key:
|
484
487
|
specification_version: 4
|
485
488
|
summary: Travis CI client
|
486
489
|
test_files: []
|
490
|
+
has_rdoc:
|