travis 1.8.14.travis.1175.9 → 1.8.14.travis.1178.9
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 +4 -4
- data/assets/init/bash.yml +1 -0
- data/assets/travis.sh +3 -3
- data/travis.gemspec +3 -0
- metadata +4 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6927b1961a585c23022ee4eff58fe4656f4a45c581555cef9f7e0f76f59e6c6
|
4
|
+
data.tar.gz: cbca0c2501e1fd7532d9253320823286fe2f41e3d01ccf234aceba5d83bd1f3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3567d99162a9fc50e544186db0365ee36b402ce6324b85f6164af841226c058e109050fa86c735ec6cb8142001b1aca888aa12af826285ee0bb51b4550fdbbb6
|
7
|
+
data.tar.gz: 7b8f929623051f096728c2eec5dc93c8fabd59fadb248696c9f5726ce76bb99d9674674e7f974d7e453e92e22a7df22e6026cbcca5ebf4a5e568d4dfab721072
|
@@ -0,0 +1 @@
|
|
1
|
+
language: bash
|
data/assets/travis.sh
CHANGED
@@ -23,7 +23,7 @@ if type compdef 1>/dev/null 2>/dev/null; then
|
|
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; requires `pry`" 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 project's 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
24
|
_travis_setup() { list=(anynines:"automatic deployment to anynines" appfog:"automatic deployment to Appfog" artifacts:"automatic artifact shipping to S3" biicode:"automatic publish to biicode" cloudcontrol:"automatic deployment to cloudControl" cloudfiles:"automatic pushing to Rackspace Cloud Files" cloudfoundry:"automatic deployment to Cloud Foundry" cloud66:"Automatic deployment to Cloud 66" codedeploy:"triggering a new deployment on Amazon CodeDeploy" 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" auto_cancel_pushes:"Cancel older push builds that are not yet running" auto_cancel_pull_requests:"Cancel older pull request builds that are not yet running") _describe -t common-commands 'common commands' list; }
|
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; }
|
26
|
+
_travis_init() { list=(bash:'initialize bash project' 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() {
|
28
28
|
case "${words[2]}" in
|
29
29
|
accounts) _arguments -s -S "-h[Display help]" "--help[Display help]" "-i[be interactive and colorful]" "--interactive[be interactive and colorful]" "--no-interactive[be interactive and colorful]" "-E[don't rescue exceptions]" "--explode[don't rescue exceptions]" "--no-explode[don't rescue exceptions]" "--skip-version-check[don't check if travis client is up to date]" "--skip-completion-check[don't check if auto-completion is set up]" "-e[Travis API server to talk to]" "--api-endpoint[Travis API server to talk to]" "-I[do not verify SSL certificate of API endpoint]" "--insecure[do not verify SSL certificate of API endpoint]" "--no-insecure[do not verify SSL certificate of API endpoint]" "--pro[short-cut for --api-endpoint 'https://api.travis-ci.com/']" "--com[short-cut for --api-endpoint 'https://api.travis-ci.com/']" "--org[short-cut for --api-endpoint 'https://api.travis-ci.org/']" "--staging[talks to staging system]" "-t[access token to use]" "--token[access token to use]" "--debug[show API requests]" "--debug-http[show HTTP(S) exchange]" "-X[use enterprise setup (optionally takes name for multiple setups)]" "--enterprise[use enterprise setup (optionally takes name for multiple setups)]" "--adapter[Faraday adapter to use for HTTP requests]" '*:file:_files' && return 0;;
|
@@ -70,7 +70,7 @@ elif type compctl 1>/dev/null 2>/dev/null; then
|
|
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
71
|
_travis_setup() { reply=("anynines" "appfog" "artifacts" "biicode" "cloudcontrol" "cloudfiles" "cloudfoundry" "cloud66" "codedeploy" "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 auto_cancel_pushes auto_cancel_pull_requests); }
|
73
|
-
_travis_init() { reply=("c" "clojure" "cpp" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"); }
|
73
|
+
_travis_init() { reply=("bash" "c" "clojure" "cpp" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"); }
|
74
74
|
_travis_option() {
|
75
75
|
case "${words[2]}" in
|
76
76
|
accounts) reply=("--help" "-h" "--interactive" "--no-interactive" "-i" "--explode" "--no-explode" "-E" "--skip-version-check" "--skip-completion-check" "--api-endpoint" "-e" "--insecure" "--no-insecure" "-I" "--pro" "--com" "--org" "--staging" "--token" "-t" "--debug" "--debug-http" "--enterprise" "-X" "--adapter");;
|
@@ -117,7 +117,7 @@ elif type complete 1>/dev/null 2>/dev/null; then
|
|
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
118
|
_travis_setup() { COMPREPLY=( $(compgen -W "anynines appfog artifacts biicode cloudcontrol cloudfiles cloudfoundry cloud66 codedeploy 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 auto_cancel_pushes auto_cancel_pull_requests" -- "${COMP_WORDS[COMP_CWORD]}") ); }
|
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]}") ); }
|
120
|
+
_travis_init() { COMPREPLY=( $(compgen -W ""bash" "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() {
|
122
122
|
local options
|
123
123
|
case "${COMP_WORDS[1]}" in
|
data/travis.gemspec
CHANGED
@@ -40,6 +40,7 @@ Gem::Specification.new do |s|
|
|
40
40
|
"Stefan Nordhausen",
|
41
41
|
"Tobias Bieniek",
|
42
42
|
"joshua-anderson",
|
43
|
+
"Adam Baxter",
|
43
44
|
"Basarat Ali Syed",
|
44
45
|
"Dani Hodovic",
|
45
46
|
"Dominic Jodoin",
|
@@ -101,6 +102,7 @@ Gem::Specification.new do |s|
|
|
101
102
|
"stefan.nordhausen@immobilienscout24.de",
|
102
103
|
"tobias.bieniek@gmail.com",
|
103
104
|
"j@zatigo.com",
|
105
|
+
"github@voltagex.org",
|
104
106
|
"basaratali@gmail.com",
|
105
107
|
"danihodovic@users.noreply.github.com",
|
106
108
|
"dominic@travis-ci.com",
|
@@ -140,6 +142,7 @@ Gem::Specification.new do |s|
|
|
140
142
|
"README.md",
|
141
143
|
"Rakefile",
|
142
144
|
"assets/cacert.pem",
|
145
|
+
"assets/init/bash.yml",
|
143
146
|
"assets/init/c.yml",
|
144
147
|
"assets/init/clojure.yml",
|
145
148
|
"assets/init/cpp.yml",
|
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.8.14.travis.
|
4
|
+
version: 1.8.14.travis.1178.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -33,6 +33,7 @@ authors:
|
|
33
33
|
- Stefan Nordhausen
|
34
34
|
- Tobias Bieniek
|
35
35
|
- joshua-anderson
|
36
|
+
- Adam Baxter
|
36
37
|
- Basarat Ali Syed
|
37
38
|
- Dani Hodovic
|
38
39
|
- Dominic Jodoin
|
@@ -291,6 +292,7 @@ email:
|
|
291
292
|
- stefan.nordhausen@immobilienscout24.de
|
292
293
|
- tobias.bieniek@gmail.com
|
293
294
|
- j@zatigo.com
|
295
|
+
- github@voltagex.org
|
294
296
|
- basaratali@gmail.com
|
295
297
|
- danihodovic@users.noreply.github.com
|
296
298
|
- dominic@travis-ci.com
|
@@ -331,6 +333,7 @@ files:
|
|
331
333
|
- README.md
|
332
334
|
- Rakefile
|
333
335
|
- assets/cacert.pem
|
336
|
+
- assets/init/bash.yml
|
334
337
|
- assets/init/c.yml
|
335
338
|
- assets/init/clojure.yml
|
336
339
|
- assets/init/cpp.yml
|