travis 1.6.15.travis.551.6 → 1.6.15.travis.552.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/assets/travis.sh +3 -3
- data/lib/travis/cli/setup/gcs.rb +22 -0
- data/lib/travis/cli/setup/service.rb +1 -1
- data/travis.gemspec +12 -14
- metadata +13 -15
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MjMzZmM2YmI3Yjk3YjIwYzdkZTkzNDA0ZmM1ZWU0YWZkOGRlODMzZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NzAyMmFiMmJhZjY0ZmRhZWViNTU0ZWJmOTQ2ZDdhYjYyZWNiMzc0Yg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NzEzNjMwNzhkOGM5NjFhZWYzMjI4M2IxMTM5M2E4NDg2Yzk5ZjdkZGU1NGU2
|
10
|
+
MzllZjIzYTY3M2I4OTQxYzA3MmIzYjM1NTIyMmE2NWE1ODRmMGE2Yjc3MmZj
|
11
|
+
YTA0NjNjMmNkMDZjMmJhZWZmZDA1MWIzZmQ4Zjc1NTE5YTU0YWQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZGVjYzU5NTFkOGQ3YzRmZjE0MjM0MmFlNWE5NjdkYzM5MDI3ZGRmM2YzMjZj
|
14
|
+
NDQxNzQxYWJmNTFmMGFmMDc5M2I2MzhkNzkzMjQ5NzUxZjk3YjBmMzkwMTc0
|
15
|
+
OWYzZjBjZTk5NTY5ZWVjOWQyNTM2ODUyMjVkNmE5MGRmMmM5OWM=
|
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" endpoint:"displays or changes the API endpoint" 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" 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" 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"
|
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; }
|
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") _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() {
|
@@ -65,7 +65,7 @@ elif type compctl 1>/dev/null 2>/dev/null; then
|
|
65
65
|
compctl -K _travis travis
|
66
66
|
_travis() { read -cA words && _travis_complete $((${#words} - 1)) "${words[2]}"; }
|
67
67
|
_travis_commands() { reply=("accounts" "branches" "cache" "cancel" "console" "disable" "enable" "encrypt" "endpoint" "help" "history" "init" "lint" "login" "logout" "logs" "monitor" "open" "pubkey" "raw" "report" "repos" "requests" "restart" "settings" "setup" "show" "status" "sync" "token" "version" "whatsup" "whoami"); }
|
68
|
-
_travis_setup() { reply=("appfog" "artifacts" "cloudcontrol" "cloudfiles" "cloudfoundry" "cloud66" "deis" "divshot" "engineyard" "hackage" "heroku" "modulus" "npm" "ninefold" "nodejitsu" "openshift" "opsworks" "pypi" "releases" "rubygems" "
|
68
|
+
_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"); }
|
69
69
|
_travis_settings() { reply=(builds_only_with_travis_yml build_pushes build_pull_requests); }
|
70
70
|
_travis_init() { reply=("c" "clojure" "cpp" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"); }
|
71
71
|
_travis_option() {
|
@@ -109,7 +109,7 @@ elif type complete 1>/dev/null 2>/dev/null; then
|
|
109
109
|
complete -F _travis travis
|
110
110
|
_travis() { _travis_complete "$COMP_CWORD" "${COMP_WORDS[1]}"; }
|
111
111
|
_travis_commands() { COMPREPLY=( $(compgen -W "accounts branches cache cancel console disable enable encrypt endpoint help history init lint login logout logs monitor open pubkey raw report repos requests restart settings setup show status sync token version whatsup whoami" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
112
|
-
_travis_setup() { COMPREPLY=( $(compgen -W "appfog artifacts cloudcontrol cloudfiles cloudfoundry cloud66 deis divshot engineyard hackage heroku modulus npm ninefold nodejitsu openshift opsworks pypi releases rubygems
|
112
|
+
_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]}") ); }
|
113
113
|
_travis_settings() { COMPREPLY=( $(compgen -W "builds_only_with_travis_yml build_pushes build_pull_requests" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
114
114
|
_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]}") ); }
|
115
115
|
_travis_option() {
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'travis/cli/setup'
|
2
|
+
|
3
|
+
module Travis
|
4
|
+
module CLI
|
5
|
+
class Setup
|
6
|
+
class GCS < Service
|
7
|
+
description "automatic pushing to Google Cloud Storage"
|
8
|
+
|
9
|
+
def run
|
10
|
+
deploy 'gcs' 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['bucket'] = ask("Bucket: ").to_s
|
14
|
+
local_dir = ask("Local project directory to upload (Optional): ").to_s
|
15
|
+
config['local-dir'] = local_dir unless local_dir.empty?
|
16
|
+
encrypt(config, 'secret_access_key') if agree("Encrypt secret access key? ") { |q| q.default = 'yes' }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/travis.gemspec
CHANGED
@@ -19,12 +19,11 @@ Gem::Specification.new do |s|
|
|
19
19
|
"Peter Souter",
|
20
20
|
"Peter van Dijk",
|
21
21
|
"Max Barnash",
|
22
|
-
"Carlos Palhares",
|
23
22
|
"Mathias Meyer",
|
23
|
+
"Carlos Palhares",
|
24
24
|
"Thais Camilo and Konstantin Haase",
|
25
|
-
"Joshua Anderson",
|
26
25
|
"Justin Lambert",
|
27
|
-
"
|
26
|
+
"Adrien Brault",
|
28
27
|
"Laurent Petit",
|
29
28
|
"Maarten van Vliet",
|
30
29
|
"Mario Visic",
|
@@ -37,10 +36,10 @@ Gem::Specification.new do |s|
|
|
37
36
|
"Zachary Scott",
|
38
37
|
"jeffdh",
|
39
38
|
"john muhl",
|
40
|
-
"Adrien Brault",
|
41
|
-
"Daniel Chatfield",
|
42
|
-
"Adam Lavin",
|
43
39
|
"Dan Buch",
|
40
|
+
"Adam Lavin",
|
41
|
+
"Daniel Chatfield",
|
42
|
+
"Benjamin Manns",
|
44
43
|
"Jacob Burkhart",
|
45
44
|
"Jonne Ha\xC3\x9F",
|
46
45
|
"Josh Kalderimis"
|
@@ -50,19 +49,17 @@ Gem::Specification.new do |s|
|
|
50
49
|
s.email = [
|
51
50
|
"konstantin.mailinglists@googlemail.com",
|
52
51
|
"asari.ruby@gmail.com",
|
53
|
-
"aa1ronham@gmail.com",
|
54
52
|
"me@henrikhodne.com",
|
53
|
+
"aa1ronham@gmail.com",
|
55
54
|
"j@zatigo.com",
|
56
|
-
"henrik@hodne.io",
|
57
55
|
"p.morsou@gmail.com",
|
58
56
|
"peter.van.dijk@netherlabs.nl",
|
59
57
|
"i.am@anhero.ru",
|
60
|
-
"me@xjunior.me",
|
61
58
|
"meyer@paperplanes.de",
|
59
|
+
"me@xjunior.me",
|
62
60
|
"dev+narwen+rkh@rkh.im",
|
63
|
-
"j@zatigo.com",
|
64
61
|
"jlambert@eml.cc",
|
65
|
-
"
|
62
|
+
"adrien.brault@gmail.com",
|
66
63
|
"laurent.petit@gmail.com",
|
67
64
|
"maartenvanvliet@gmail.com",
|
68
65
|
"mario@mariovisic.com",
|
@@ -75,10 +72,10 @@ Gem::Specification.new do |s|
|
|
75
72
|
"e@zzak.io",
|
76
73
|
"jeffdh@gmail.com",
|
77
74
|
"git@johnmuhl.com",
|
78
|
-
"adrien.brault@gmail.com",
|
79
|
-
"chatfielddaniel@gmail.com",
|
80
|
-
"adam@lavoaster.co.uk",
|
81
75
|
"dan@meatballhat.com",
|
76
|
+
"adam@lavoaster.co.uk",
|
77
|
+
"chatfielddaniel@gmail.com",
|
78
|
+
"benmanns@gmail.com",
|
82
79
|
"jburkhart@engineyard.com",
|
83
80
|
"me@jhass.eu",
|
84
81
|
"josh.kalderimis@gmail.com"
|
@@ -162,6 +159,7 @@ Gem::Specification.new do |s|
|
|
162
159
|
"lib/travis/cli/setup/deis.rb",
|
163
160
|
"lib/travis/cli/setup/divshot.rb",
|
164
161
|
"lib/travis/cli/setup/engine_yard.rb",
|
162
|
+
"lib/travis/cli/setup/gcs.rb",
|
165
163
|
"lib/travis/cli/setup/hackage.rb",
|
166
164
|
"lib/travis/cli/setup/heroku.rb",
|
167
165
|
"lib/travis/cli/setup/modulus.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.6.15.travis.
|
4
|
+
version: 1.6.15.travis.552.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -12,12 +12,11 @@ authors:
|
|
12
12
|
- Peter Souter
|
13
13
|
- Peter van Dijk
|
14
14
|
- Max Barnash
|
15
|
-
- Carlos Palhares
|
16
15
|
- Mathias Meyer
|
16
|
+
- Carlos Palhares
|
17
17
|
- Thais Camilo and Konstantin Haase
|
18
|
-
- Joshua Anderson
|
19
18
|
- Justin Lambert
|
20
|
-
-
|
19
|
+
- Adrien Brault
|
21
20
|
- Laurent Petit
|
22
21
|
- Maarten van Vliet
|
23
22
|
- Mario Visic
|
@@ -30,10 +29,10 @@ authors:
|
|
30
29
|
- Zachary Scott
|
31
30
|
- jeffdh
|
32
31
|
- john muhl
|
33
|
-
- Adrien Brault
|
34
|
-
- Daniel Chatfield
|
35
|
-
- Adam Lavin
|
36
32
|
- Dan Buch
|
33
|
+
- Adam Lavin
|
34
|
+
- Daniel Chatfield
|
35
|
+
- Benjamin Manns
|
37
36
|
- Jacob Burkhart
|
38
37
|
- Jonne Haß
|
39
38
|
- Josh Kalderimis
|
@@ -246,19 +245,17 @@ description: CLI and Ruby client library for Travis CI
|
|
246
245
|
email:
|
247
246
|
- konstantin.mailinglists@googlemail.com
|
248
247
|
- asari.ruby@gmail.com
|
249
|
-
- aa1ronham@gmail.com
|
250
248
|
- me@henrikhodne.com
|
249
|
+
- aa1ronham@gmail.com
|
251
250
|
- j@zatigo.com
|
252
|
-
- henrik@hodne.io
|
253
251
|
- p.morsou@gmail.com
|
254
252
|
- peter.van.dijk@netherlabs.nl
|
255
253
|
- i.am@anhero.ru
|
256
|
-
- me@xjunior.me
|
257
254
|
- meyer@paperplanes.de
|
255
|
+
- me@xjunior.me
|
258
256
|
- dev+narwen+rkh@rkh.im
|
259
|
-
- j@zatigo.com
|
260
257
|
- jlambert@eml.cc
|
261
|
-
-
|
258
|
+
- adrien.brault@gmail.com
|
262
259
|
- laurent.petit@gmail.com
|
263
260
|
- maartenvanvliet@gmail.com
|
264
261
|
- mario@mariovisic.com
|
@@ -271,10 +268,10 @@ email:
|
|
271
268
|
- e@zzak.io
|
272
269
|
- jeffdh@gmail.com
|
273
270
|
- git@johnmuhl.com
|
274
|
-
- adrien.brault@gmail.com
|
275
|
-
- chatfielddaniel@gmail.com
|
276
|
-
- adam@lavoaster.co.uk
|
277
271
|
- dan@meatballhat.com
|
272
|
+
- adam@lavoaster.co.uk
|
273
|
+
- chatfielddaniel@gmail.com
|
274
|
+
- benmanns@gmail.com
|
278
275
|
- jburkhart@engineyard.com
|
279
276
|
- me@jhass.eu
|
280
277
|
- josh.kalderimis@gmail.com
|
@@ -359,6 +356,7 @@ files:
|
|
359
356
|
- lib/travis/cli/setup/deis.rb
|
360
357
|
- lib/travis/cli/setup/divshot.rb
|
361
358
|
- lib/travis/cli/setup/engine_yard.rb
|
359
|
+
- lib/travis/cli/setup/gcs.rb
|
362
360
|
- lib/travis/cli/setup/hackage.rb
|
363
361
|
- lib/travis/cli/setup/heroku.rb
|
364
362
|
- lib/travis/cli/setup/modulus.rb
|