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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6927b1961a585c23022ee4eff58fe4656f4a45c581555cef9f7e0f76f59e6c6
4
- data.tar.gz: cbca0c2501e1fd7532d9253320823286fe2f41e3d01ccf234aceba5d83bd1f3e
3
+ metadata.gz: d67117f45b237e6b6331faee7389117e2fbbe881c3383b3da96b5f1856b43295
4
+ data.tar.gz: 49a0637b3b2fa184b4512f8bbfc75502fa5ad8ba2a9307465689d4945baceb8b
5
5
  SHA512:
6
- metadata.gz: 3567d99162a9fc50e544186db0365ee36b402ce6324b85f6164af841226c058e109050fa86c735ec6cb8142001b1aca888aa12af826285ee0bb51b4550fdbbb6
7
- data.tar.gz: 7b8f929623051f096728c2eec5dc93c8fabd59fadb248696c9f5726ce76bb99d9674674e7f974d7e453e92e22a7df22e6026cbcca5ebf4a5e568d4dfab721072
6
+ metadata.gz: 35bb66262a12180330c8434442c763240aaaf19bca80b242b6540c8f629fadb200e5eb69b02ec874f8a4db1cee97faaed2a0ea0b19d3bc3f6902945abfec184f
7
+ data.tar.gz: 9c67cf9e3bf10a245cc95e6f9c003700b62d8325868ff4276a3b058caad73ed3889a5a3bd449c38681eeb35caf050822e4b17f9209cec1f0900631b145b25878
@@ -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 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=(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() {
@@ -4,12 +4,12 @@ module Travis
4
4
  module CLI
5
5
  class Setup
6
6
  class NPM < Service
7
- description "automatic release to NPM"
7
+ description "automatic release to npm"
8
8
 
9
9
  def run
10
10
  deploy 'npm', 'release' do |config|
11
- config['email'] ||= ask("NPM email address: ") { |q| q }.to_s
12
- config['api_key'] ||= ask("NPM api key: ") { |q| q.echo = "*" }.to_s
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
@@ -81,7 +81,7 @@ module Travis
81
81
 
82
82
  def running?(app)
83
83
  return false unless unix?
84
- system "pgrep -u $(whoami) #{app} >/dev/null"
84
+ system "/usr/bin/pgrep -u $(whoami) #{app} >/dev/null"
85
85
  end
86
86
  end
87
87
  end
@@ -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.1178.9
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