travis 1.8.14.travis.1178.9 → 1.8.14.travis.1183.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/assets/travis.sh +1 -1
- data/lib/travis/cli/setup/npm.rb +3 -3
- data/lib/travis/tools/system.rb +1 -1
- data/travis.gemspec +6 -0
- metadata +7 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d67117f45b237e6b6331faee7389117e2fbbe881c3383b3da96b5f1856b43295
|
4
|
+
data.tar.gz: 49a0637b3b2fa184b4512f8bbfc75502fa5ad8ba2a9307465689d4945baceb8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35bb66262a12180330c8434442c763240aaaf19bca80b242b6540c8f629fadb200e5eb69b02ec874f8a4db1cee97faaed2a0ea0b19d3bc3f6902945abfec184f
|
7
|
+
data.tar.gz: 9c67cf9e3bf10a245cc95e6f9c003700b62d8325868ff4276a3b058caad73ed3889a5a3bd449c38681eeb35caf050822e4b17f9209cec1f0900631b145b25878
|
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; 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
|
-
_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
|
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
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() {
|
data/lib/travis/cli/setup/npm.rb
CHANGED
@@ -4,12 +4,12 @@ module Travis
|
|
4
4
|
module CLI
|
5
5
|
class Setup
|
6
6
|
class NPM < Service
|
7
|
-
description "automatic release to
|
7
|
+
description "automatic release to npm"
|
8
8
|
|
9
9
|
def run
|
10
10
|
deploy 'npm', 'release' do |config|
|
11
|
-
config['email'] ||= ask("
|
12
|
-
config['api_key'] ||= ask("
|
11
|
+
config['email'] ||= ask("npm email address: ") { |q| q }.to_s
|
12
|
+
config['api_key'] ||= ask("npm api key: ") { |q| q.echo = "*" }.to_s
|
13
13
|
|
14
14
|
on("release only tagged commits? ", config, 'tags' => true)
|
15
15
|
end
|
data/lib/travis/tools/system.rb
CHANGED
data/travis.gemspec
CHANGED
@@ -42,6 +42,7 @@ Gem::Specification.new do |s|
|
|
42
42
|
"joshua-anderson",
|
43
43
|
"Adam Baxter",
|
44
44
|
"Basarat Ali Syed",
|
45
|
+
"Christian H\xC3\xB6ltje",
|
45
46
|
"Dani Hodovic",
|
46
47
|
"Dominic Jodoin",
|
47
48
|
"Eric Herot",
|
@@ -67,6 +68,8 @@ Gem::Specification.new do |s|
|
|
67
68
|
"Rob Hoelz",
|
68
69
|
"Robert Van Voorhees",
|
69
70
|
"Simon Cropp",
|
71
|
+
"Titus",
|
72
|
+
"Titus Wormer",
|
70
73
|
"designerror",
|
71
74
|
"ia"
|
72
75
|
]
|
@@ -104,6 +107,7 @@ Gem::Specification.new do |s|
|
|
104
107
|
"j@zatigo.com",
|
105
108
|
"github@voltagex.org",
|
106
109
|
"basaratali@gmail.com",
|
110
|
+
"docwhat@gerf.org",
|
107
111
|
"danihodovic@users.noreply.github.com",
|
108
112
|
"dominic@travis-ci.com",
|
109
113
|
"eric.github@herot.com",
|
@@ -131,6 +135,8 @@ Gem::Specification.new do |s|
|
|
131
135
|
"rob@hoelz.ro",
|
132
136
|
"rcvanvo@gmail.com",
|
133
137
|
"simon.cropp@gmail.com",
|
138
|
+
"tituswormer@gmail.com",
|
139
|
+
"tituswormer@gmail.com",
|
134
140
|
"carla@travis-ci.org",
|
135
141
|
"designerror@yandex.ru",
|
136
142
|
"isaac.ardis@gmail.com"
|
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.1183.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -35,6 +35,7 @@ authors:
|
|
35
35
|
- joshua-anderson
|
36
36
|
- Adam Baxter
|
37
37
|
- Basarat Ali Syed
|
38
|
+
- Christian Höltje
|
38
39
|
- Dani Hodovic
|
39
40
|
- Dominic Jodoin
|
40
41
|
- Eric Herot
|
@@ -60,6 +61,8 @@ authors:
|
|
60
61
|
- Rob Hoelz
|
61
62
|
- Robert Van Voorhees
|
62
63
|
- Simon Cropp
|
64
|
+
- Titus
|
65
|
+
- Titus Wormer
|
63
66
|
- designerror
|
64
67
|
- ia
|
65
68
|
autorequire:
|
@@ -294,6 +297,7 @@ email:
|
|
294
297
|
- j@zatigo.com
|
295
298
|
- github@voltagex.org
|
296
299
|
- basaratali@gmail.com
|
300
|
+
- docwhat@gerf.org
|
297
301
|
- danihodovic@users.noreply.github.com
|
298
302
|
- dominic@travis-ci.com
|
299
303
|
- eric.github@herot.com
|
@@ -321,6 +325,8 @@ email:
|
|
321
325
|
- rob@hoelz.ro
|
322
326
|
- rcvanvo@gmail.com
|
323
327
|
- simon.cropp@gmail.com
|
328
|
+
- tituswormer@gmail.com
|
329
|
+
- tituswormer@gmail.com
|
324
330
|
- carla@travis-ci.org
|
325
331
|
- designerror@yandex.ru
|
326
332
|
- isaac.ardis@gmail.com
|