travis 1.10.0.pre.rc4 → 1.10.1.travis.1321.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: 0e905342871129af20f51129783f53ed4f4b67449c6eb85420171ced85d2a22f
4
- data.tar.gz: 62aa2f7fb8418052d24e70ef69a596dd4b1573a95d716652c1d306f22aa8590a
3
+ metadata.gz: 7c1a4bbe25f4dba3828b5e05847d08bbccd8f078f3652cbd036984684302ad3c
4
+ data.tar.gz: 65a0422d65649bf674d116f03b159f476d0e1aad2cacf0ccbb7d5c56a6063716
5
5
  SHA512:
6
- metadata.gz: cf99c2c712661583e0c7d242b965b2ebf306821512f34c8f5dbffc3223165e6f72ec528c71a4f05bcadb9ca638b0bef15e8909c7c6afef6a84a8b040c6ff3e6c
7
- data.tar.gz: 1b3096bd91e474f7ac40927899f04fc3d78db25c18dda4c75ebc131c4efa2c6b5e4243dd1dcf6466ac00292d8597f727463d2b6b5a797254401d3d3d1d9138dd
6
+ metadata.gz: dfc02b19614f8a8a7cc9d21cd1cb1556f0b413d55bf41b26b3081705cc7752f8e62f9cb0a6d95e545ec2f702ee48c09f4d74b31d4753dbcf1ca82cf218512113
7
+ data.tar.gz: a7cf963704e192bea54431432f4b4497ada98fdee74de4f65fff740e54dff9970e472e288c2190e408a64e5332870dcc31aaa9eec6ad6b004454a9c75d313816
data/README.md CHANGED
@@ -2018,10 +2018,16 @@ If you do not have write access to the system gem directory, you'll need to perf
2018
2018
  Now make sure everything is working:
2019
2019
 
2020
2020
  $ travis version
2021
- 1.10.0.pre.rc4
2021
+ 1.10.0
2022
2022
 
2023
2023
  See also [Note on Ubuntu](#ubuntu) below.
2024
2024
 
2025
+ ### Note on Ruby 2.3
2026
+
2027
+ For Ruby 2.3.x, be sure to have a compatible version of `faraday` installed; e.g.,
2028
+
2029
+ $ gem install faraday -v 1.0.1
2030
+
2025
2031
  ### Development Version
2026
2032
 
2027
2033
  You can also install the development version via RubyGems:
@@ -2041,11 +2047,12 @@ bundle exec bin/travis a-command # run your command
2041
2047
 
2042
2048
  ### Updating your Ruby
2043
2049
 
2044
- If you have an outdated Ruby version, you should use your package system or a Ruby Installer to install a recent Ruby.
2050
+ If you have an outdated Ruby version, or your OS doesn't come with Ruby pre-installed,
2051
+ you should use your package system or a Ruby Installer to install a recent Ruby.
2045
2052
 
2046
2053
  #### Mac OS X via Homebrew
2047
2054
 
2048
- Mac OSX prior to 10.9 ships with a very dated Ruby version. You can use [Homebrew](http://mxcl.github.io/homebrew/) to install a recent version:
2055
+ You can use [Homebrew](http://mxcl.github.io/homebrew/) to install a recent version:
2049
2056
 
2050
2057
  $ brew install ruby
2051
2058
  $ gem update --system
@@ -2056,28 +2063,14 @@ On Windows, we recommend using the [RubyInstaller](http://rubyinstaller.org/), w
2056
2063
 
2057
2064
  #### Other Unix systems
2058
2065
 
2059
- On other Unix systems, like Linux, use your package system to install Ruby. Please inquire before hand which package you might actually want to install, as for some distributions `ruby` might actually still be 1.8.7 or older.
2060
-
2061
- Debian:
2066
+ On other Unix systems, like Linux, use your package system to install Ruby.
2062
2067
 
2063
- $ sudo apt-get install ruby1.9.3 ruby1.9.3-dev ruby-switch
2064
- $ sudo ruby-switch --set ruby1.9.3
2068
+ Debian, Ubuntu:
2065
2069
 
2066
- Ubuntu:
2067
-
2068
- $ sudo apt-get install python-software-properties
2069
- $ sudo apt-add-repository ppa:brightbox/ruby-ng
2070
2070
  $ sudo apt-get update
2071
- $ sudo apt-get install ruby2.1 ruby2.1-dev ruby-switch
2072
- $ sudo ruby-switch --set ruby2.1
2073
-
2074
- Fedora:
2075
-
2076
- $ sudo yum install ruby ruby-devel
2071
+ $ sudo apt-get install ruby
2077
2072
 
2078
- Arch Linux:
2079
-
2080
- $ sudo pacman -S ruby
2073
+ For other Linux distributions, refer to their respective documentation.
2081
2074
 
2082
2075
  #### Ruby versioning tools
2083
2076
 
@@ -2087,44 +2080,26 @@ You can of course always compile Ruby from source, though then you are left with
2087
2080
 
2088
2081
  ### Troubleshooting
2089
2082
 
2090
- #### Ubuntu
2091
-
2092
- On certain versions of Ubuntu (e.g., 13.10), you need to install the corresponding `-dev` package
2093
- in order to build the C extension on which `travis` gem depends.
2094
-
2095
- For the stock Ubuntu 13.10, run:
2096
-
2097
- $ sudo apt-get install ruby1.9.1-dev
2098
-
2099
- If you updated to Ruby 2.1 as shown above:
2100
-
2101
- $ sudo apt-get install ruby2.1-dev
2102
-
2103
- For newer versions of Ubuntu (16.04 and above), it should be enough to run:
2104
-
2105
- $ sudo apt-get install ruby-dev
2083
+ #### Upgrading from travis-cli
2106
2084
 
2107
- If you have error about `mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h`
2108
- ```console
2109
- # try to run following cmd
2110
- sudo apt-get install ruby-dev libffi-dev make gcc -y
2111
- sudo gem install travis
2112
- ```
2113
- #### Mac OS X
2085
+ If you have the old `travis-cli` gem installed, you should `gem uninstall travis-cli`, just to be sure, as it ships with an executable that is also named `travis`.
2114
2086
 
2115
- If you start with a clean Mac OS X, you will have to install the XCode Command Line Tools, which are necessary for installing native extensions. You can do so via `xcode-select`:
2087
+ #### `uninitialized constant Faraday::Error::ConnectionFailed`
2116
2088
 
2117
- $ xcode-select --install
2089
+ You might see this error message if you have Typhoeus version prior to version 1.4.0
2090
+ and Faraday 1.0 and up.
2091
+ You can eradicate this problem by either:
2118
2092
 
2119
- Mac OS X 10.9.2 shipped with a slightly broken Ruby version. If you want to install the gem via the system Ruby and you get an error, you might have to run the following instead:
2093
+ 1. Update Typhoeus to version 1.4.0 or later
2094
+ 1. Remove typhoeus entirely
2120
2095
 
2121
- $ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install travis
2096
+ See https://github.com/travis-ci/travis.rb/issues/768#issuecomment-700220351 for more details.
2122
2097
 
2123
- #### Upgrading from travis-cli
2098
+ ## Version History
2124
2099
 
2125
- If you have the old `travis-cli` gem installed, you should `gem uninstall travis-cli`, just to be sure, as it ships with an executable that is also named `travis`.
2100
+ ### 1.10.1
2126
2101
 
2127
- ## Version History
2102
+ * Fix `travis monitor` command https://github.com/travis-ci/travis.rb/pull/770
2128
2103
 
2129
2104
  ### 1.10.0 (September 22, 2020)
2130
2105
 
@@ -20,7 +20,7 @@ _travis_complete() {
20
20
  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
- _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" 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; }
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
26
  _travis_init() { list=(bash:'initialize bash project' c:'initialize c project' clojure:'initialize clojure project' cpp:'initialize cpp project' elixir:'initialize elixir 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; }
@@ -44,6 +44,7 @@ if type compdef 1>/dev/null 2>/dev/null; then
44
44
  login) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" "-g[identify by GitHub token]" "--github-token[identify by GitHub token]" "-T[try to figure out who you are automatically (might send another apps token to Travis, token will not be stored)]" "--auto-token[try to figure out who you are automatically (might send another apps token to Travis, token will not be stored)]" "-p[try to load password from OSX keychain (will not be stored)]" "--auto-password[try to load password from OSX keychain (will not be stored)]" "-a[shorthand for --auto-token --auto-password]" "--auto[shorthand for --auto-token --auto-password]" "-u[user to log in as]" "--user[user to log in as]" "-M[do not use interactive login]" "--no-manual[do not use interactive login]" "--list-github-token[instead of actually logging in, list found GitHub tokens]" "--skip-token-check[don't verify the token with github]" '*:file:_files' && return 0;;
45
45
  logout) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" '*:file:_files' && return 0;;
46
46
  logs) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" "-r[repository to use (will try to detect from current git clone)]" "--repo[repository to use (will try to detect from current git clone)]" "-R[like --repo, but remembers value for current directory]" "--store-repo[like --repo, but remembers value for current directory]" "-d[remove logs]" "--delete[remove logs]" "-f[do not ask user to confirm deleting the logs]" "--force[do not ask user to confirm deleting the logs]" "--stream[only print current logs, do not stream]" "--no-stream[only print current logs, do not stream]" '*:file:_files' && return 0;;
47
+ monitor) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" "-m[Only monitor my own repositories]" "--my-repos[Only monitor my own repositories]" "-r[monitor given repository (can be used more than once)]" "--repo[monitor given repository (can be used more than once)]" "-n[send out desktop notifications (optional type: osx, growl, libnotify)]" "--notify[send out desktop notifications (optional type: osx, growl, libnotify)]" "--no-notify[send out desktop notifications (optional type: osx, growl, libnotify)]" "-b[only monitor builds, not jobs]" "--builds[only monitor builds, not jobs]" "-p[monitor push events]" "--push[monitor push events]" "-P[monitor pull request events]" "--pull[monitor pull request events]" '*:file:_files' && return 0;;
47
48
  open) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" "-r[repository to use (will try to detect from current git clone)]" "--repo[repository to use (will try to detect from current git clone)]" "-R[like --repo, but remembers value for current directory]" "--store-repo[like --repo, but remembers value for current directory]" "-g[Open the corresponding project, compare view or pull request on GitHub]" "--github[Open the corresponding project, compare view or pull request on GitHub]" "-p[Print out the URL instead of opening it in a browser]" "--print[Print out the URL instead of opening it in a browser]" '*:file:_files' && return 0;;
48
49
  pubkey) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" "-r[repository to use (will try to detect from current git clone)]" "--repo[repository to use (will try to detect from current git clone)]" "-R[like --repo, but remembers value for current directory]" "--store-repo[like --repo, but remembers value for current directory]" "-p[encode in format used by pem]" "--pem[encode in format used by pem]" "-f[display fingerprint]" "--fingerprint[display fingerprint]" '*:file:_files' && return 0;;
49
50
  raw) _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. If omitted, use Typhoeus if it is installed, and Net::HTTP otherwise. See https://lostisland.github.io/faraday/adapters/ for more info]" "--json[display as json]" "--no-json[display as json]" '*:file:_files' && return 0;;
@@ -66,7 +67,7 @@ if type compdef 1>/dev/null 2>/dev/null; then
66
67
  elif type compctl 1>/dev/null 2>/dev/null; then
67
68
  compctl -K _travis travis
68
69
  _travis() { read -cA words && _travis_complete $((${#words} - 1)) "${words[2]}"; }
69
- _travis_commands() { reply=("accounts" "branches" "cache" "cancel" "console" "disable" "enable" "encrypt" "encrypt-file" "endpoint" "env" "help" "history" "init" "lint" "login" "logout" "logs" "open" "pubkey" "raw" "report" "repos" "requests" "restart" "settings" "setup" "show" "sshkey" "status" "sync" "token" "version" "whatsup" "whoami"); }
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"); }
70
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"); }
71
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); }
72
73
  _travis_init() { reply=("bash" "c" "clojure" "cpp" "elixir" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"); }
@@ -90,6 +91,7 @@ elif type compctl 1>/dev/null 2>/dev/null; then
90
91
  login) 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" "--github-token" "-g" "--auto-token" "-T" "--auto-password" "-p" "--auto" "-a" "--user" "-u" "--no-manual" "-M" "--list-github-token" "--skip-token-check");;
91
92
  logout) 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");;
92
93
  logs) 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" "--repo" "-r" "--store-repo" "-R" "--delete" "-d" "--force" "-f" "--stream" "--no-stream");;
94
+ monitor) 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" "--my-repos" "-m" "--repo" "-r" "--notify" "--no-notify" "-n" "--builds" "-b" "--push" "-p" "--pull" "-P");;
93
95
  open) 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" "--repo" "-r" "--store-repo" "-R" "--github" "-g" "--print" "-p");;
94
96
  pubkey) 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" "--repo" "-r" "--store-repo" "-R" "--pem" "-p" "--fingerprint" "-f");;
95
97
  raw) 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" "--json" "--no-json");;
@@ -112,7 +114,7 @@ elif type compctl 1>/dev/null 2>/dev/null; then
112
114
  elif type complete 1>/dev/null 2>/dev/null; then
113
115
  complete -F _travis travis
114
116
  _travis() { _travis_complete "$COMP_CWORD" "${COMP_WORDS[1]}"; }
115
- _travis_commands() { COMPREPLY=( $(compgen -W "accounts branches cache cancel console disable enable encrypt encrypt-file endpoint env help history init lint login logout logs open pubkey raw report repos requests restart settings setup show sshkey status sync token version whatsup whoami" -- "${COMP_WORDS[COMP_CWORD]}") ); }
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]}") ); }
116
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]}") ); }
117
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]}") ); }
118
120
  _travis_init() { COMPREPLY=( $(compgen -W ""bash" "c" "clojure" "cpp" "elixir" "erlang" "go" "groovy" "haskell" "java" "node_js" "objective-c" "perl" "php" "python" "ruby" "scala"" -- "${COMP_WORDS[COMP_CWORD]}") ); }
@@ -137,6 +139,7 @@ elif type complete 1>/dev/null 2>/dev/null; then
137
139
  login) options="--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 --github-token -g --auto-token -T --auto-password -p --auto -a --user -u --no-manual -M --list-github-token --skip-token-check";;
138
140
  logout) options="--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";;
139
141
  logs) options="--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 --repo -r --store-repo -R --delete -d --force -f --stream --no-stream";;
142
+ monitor) options="--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 --my-repos -m --repo -r --notify --no-notify -n --builds -b --push -p --pull -P";;
140
143
  open) options="--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 --repo -r --store-repo -R --github -g --print -p";;
141
144
  pubkey) options="--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 --repo -r --store-repo -R --pem -p --fingerprint -f";;
142
145
  raw) options="--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 --json --no-json";;
@@ -15,7 +15,7 @@ module Travis
15
15
  def setup
16
16
  super
17
17
  authenticate
18
- error "not allowed to access environment variables for #{color(repository.slug, :bold)}" unless repository.admin?
18
+ error "not allowed to access environment variables for #{color(repository.slug, :bold)}" unless repository.push?
19
19
  end
20
20
 
21
21
  def set(name, value)
@@ -63,4 +63,4 @@ module Travis
63
63
  end
64
64
  end
65
65
  end
66
- end
66
+ end
@@ -24,7 +24,6 @@ module Travis
24
24
  end
25
25
 
26
26
  class Dummy
27
- BIN_PATH = Assets['Travis CI.app/Contents/MacOS/Travis CI']
28
27
  def notify(title, body)
29
28
  end
30
29
 
@@ -1,3 +1,3 @@
1
1
  module Travis
2
- VERSION = '1.10.0.pre.rc4'
2
+ VERSION = '1.10.0'
3
3
  end
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # general info
4
4
  s.name = "travis"
5
- s.version = "1.10.0.pre.rc4"
5
+ s.version = "1.10.0"
6
6
  s.required_ruby_version = ">= 2.3.0"
7
7
  s.description = "CLI and Ruby client library for Travis CI"
8
8
  s.homepage = "https://github.com/travis-ci/travis.rb"
@@ -12,29 +12,20 @@ Gem::Specification.new do |s|
12
12
 
13
13
  # generated from git shortlog -sn
14
14
  s.authors = [
15
- "Konstantin Haase",
16
15
  "Hiro Asari",
17
- "Henrik Hodne",
18
- "joshua-anderson",
19
- "Aaron Hill",
16
+ "Konstantin Haase",
20
17
  "Piotr Milcarz",
21
18
  "Buck Doyle",
22
- "Peter Souter",
23
19
  "Christopher Grim",
24
20
  "Joe Corcoran",
25
- "Peter van Dijk",
26
21
  "Sven Fuchs",
27
22
  "Aakriti Gupta",
28
23
  "Josh Kalderimis",
29
- "Piotr Sarnacki",
30
24
  "Ke Zhu",
31
- "Max Barnash",
25
+ "Piotr Sarnacki",
32
26
  "Ren\xC3\xA9e Hendricksen",
33
27
  "carlad",
34
- "Carlos Palhares",
35
- "Dan Buch",
36
28
  "Mar\xC3\xADa de Ant\xC3\xB3n",
37
- "Mathias Meyer",
38
29
  "Matt Toothman",
39
30
  "mariadeanton",
40
31
  "techgaun",
@@ -49,54 +40,38 @@ Gem::Specification.new do |s|
49
40
  "Ivan Pozdeev",
50
41
  "Joep van Delft",
51
42
  "Stefan Nordhausen",
52
- "Thais Camilo and Konstantin Haase",
53
43
  "Tobias Bieniek",
54
44
  "Adam Baxter",
55
- "Adam Lavin",
56
- "Adrien Brault",
57
45
  "Alfie John",
58
46
  "Alo\xC3\xAFs Th\xC3\xA9venot",
59
47
  "Basarat Ali Syed",
60
- "Benjamin Manns",
61
48
  "Christian H\xC3\xB6ltje",
62
49
  "Dani Hodovic",
63
- "Daniel Chatfield",
64
50
  "Dominic Jodoin",
65
51
  "Eli Schwartz",
66
- "Eric Herot",
67
52
  "Eugene K",
68
53
  "George Millo",
54
+ "Greg Jones",
69
55
  "Gunter Grodotzki",
70
56
  "Harald Nordgren",
71
57
  "HaraldNordgren",
72
58
  "Igor",
73
59
  "Iulian Onofrei",
74
60
  "Jacob Atzen",
75
- "Jacob Burkhart",
76
61
  "James Nylen",
77
62
  "Joe Rafaniello",
78
63
  "Jon-Erik Schneiderhan",
79
64
  "Jonas Chromik",
80
- "Jonne Ha\xC3\x9F",
81
- "Julia S.Simon",
82
- "Justin Lambert",
83
- "Laurent Petit",
84
- "Maarten van Vliet",
85
65
  "Marco Craveiro",
86
- "Mario Visic",
66
+ "Marek Marczykowski-G\xC3\xB3recki",
87
67
  "Matt",
88
68
  "Matteo Sumberaz",
89
69
  "Matthias Bussonnier",
90
- "Michael Mior",
91
70
  "Michael S. Fischer",
92
- "Miro Hron\xC4\x8Dok",
93
- "Neamar",
94
71
  "Nero Leung",
95
- "Nicolas Bessi (nbessi)",
96
72
  "Nikhil Owalekar",
97
73
  "Peter Bengtsson",
98
74
  "Peter Drake",
99
- "Rapha\xC3\xABl Pinson",
100
75
  "Rob Hoelz",
101
76
  "Robert Grider",
102
77
  "Robert Van Voorhees",
@@ -104,41 +79,26 @@ Gem::Specification.new do |s|
104
79
  "Tahsin Hasan",
105
80
  "Titus",
106
81
  "Titus Wormer",
107
- "Tobias Wilken",
108
- "Zachary Gershman",
109
- "Zachary Scott",
110
82
  "designerror",
111
83
  "ia",
112
- "jeffdh",
113
- "john muhl",
114
84
  "slewt"
115
85
  ]
116
86
 
117
87
  # generated from git shortlog -sne
118
88
  s.email = [
119
- "konstantin.mailinglists@googlemail.com",
120
89
  "asari.ruby@gmail.com",
121
- "j@zatigo.com",
122
- "aa1ronham@gmail.com",
90
+ "konstantin.mailinglists@googlemail.com",
123
91
  "piotrm@travis-ci.org",
124
- "me@henrikhodne.com",
125
92
  "b@chromatin.ca",
126
- "henrik@hodne.io",
127
- "p.morsou@gmail.com",
128
93
  "chrisg@luminal.io",
129
94
  "joe@corcoran.io",
130
- "peter.van.dijk@netherlabs.nl",
131
95
  "me@svenfuchs.com",
132
96
  "josh.kalderimis@gmail.com",
133
- "drogus@gmail.com",
134
97
  "kzhu@us.ibm.com",
135
- "i.am@anhero.ru",
98
+ "drogus@gmail.com",
136
99
  "renee@travis-ci.org",
137
100
  "aakritigupta@users.noreply.github.com",
138
- "me@xjunior.me",
139
- "dan@meatballhat.com",
140
101
  "mariadeanton@gmail.com",
141
- "meyer@paperplanes.de",
142
102
  "matt.toothman@aver.io",
143
103
  "carlad@users.noreply.github.com",
144
104
  "coolsamar207@gmail.com",
@@ -153,69 +113,48 @@ Gem::Specification.new do |s|
153
113
  "igor@travis-ci.org",
154
114
  "vano@mail.mipt.ru",
155
115
  "stefan.nordhausen@immobilienscout24.de",
156
- "dev+narwen+rkh@rkh.im",
157
116
  "tobias.bieniek@gmail.com",
158
117
  "github@voltagex.org",
159
- "adam@lavoaster.co.uk",
160
- "adrien.brault@gmail.com",
161
118
  "33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf",
162
119
  "aloisthevenot@srxp.com",
163
120
  "basaratali@gmail.com",
164
- "benmanns@gmail.com",
165
121
  "docwhat@gerf.org",
166
122
  "danihodovic@users.noreply.github.com",
167
- "chatfielddaniel@gmail.com",
168
123
  "dominic@travis-ci.com",
169
124
  "eschwartz@archlinux.org",
170
- "eric.github@herot.com",
171
125
  "34233075+eugene-kulak@users.noreply.github.com",
172
126
  "georgejulianmillo@gmail.com",
127
+ "greg.jones@gmail.com",
173
128
  "gunter@grodotzki.co.za",
174
129
  "haraldnordgren@gmail.com",
175
130
  "igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com",
176
131
  "6d0847b9@opayq.com",
177
132
  "jatzen@gmail.com",
178
- "jburkhart@engineyard.com",
179
133
  "jnylen@gmail.com",
180
134
  "jrafanie@users.noreply.github.com",
181
135
  "joep@travis-ci.org",
182
136
  "joepvd@users.noreply.github.com",
183
137
  "jon-erik.schneiderhan@meyouhealth.com",
184
138
  "Jonas.Chromik@student.hpi.uni-potsdam.de",
185
- "me@jhass.eu",
186
- "julia.simon@biicode.com",
187
- "jlambert@eml.cc",
188
- "laurent.petit@gmail.com",
189
- "maartenvanvliet@gmail.com",
190
139
  "marco.craveiro@gmail.com",
191
- "mario@mariovisic.com",
140
+ "marmarek@invisiblethingslab.com",
192
141
  "mtoothman@users.noreply.github.com",
193
142
  "gnappoms@gmail.com",
194
143
  "bussonniermatthias@gmail.com",
195
- "mmior@uwaterloo.ca",
196
144
  "mfischer@zendesk.com",
197
- "miro@hroncok.cz",
198
- "neamar@neamar.fr",
199
145
  "neroleung@gmail.com",
200
- "nbessi@users.noreply.github.com",
201
146
  "nowalekar@tigetext.com",
202
147
  "peterbe@mozilla.com",
203
148
  "peter.drake@acquia.com",
204
- "raphael.pinson@camptocamp.com",
205
149
  "rob@hoelz.ro",
206
150
  "robert.grider@northwestern.edu",
207
151
  "rcvanvo@gmail.com",
208
152
  "simon.cropp@gmail.com",
209
153
  "51903216+Tahsin-travis-ci@users.noreply.github.com",
210
154
  "tituswormer@gmail.com",
211
- "tw@cloudcontrol.de",
212
- "pair+zg@pivotallabs.com",
213
- "e@zzak.io",
214
155
  "carla@travis-ci.org",
215
156
  "designerror@yandex.ru",
216
157
  "isaac.ardis@gmail.com",
217
- "jeffdh@gmail.com",
218
- "git@johnmuhl.com",
219
158
  "leland@lcweathers.net"
220
159
  ]
221
160
 
metadata CHANGED
@@ -1,32 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0.pre.rc4
4
+ version: 1.10.1.travis.1321.9
5
5
  platform: ruby
6
6
  authors:
7
- - Konstantin Haase
8
7
  - Hiro Asari
9
- - Henrik Hodne
10
- - joshua-anderson
11
- - Aaron Hill
8
+ - Konstantin Haase
12
9
  - Piotr Milcarz
13
10
  - Buck Doyle
14
- - Peter Souter
15
11
  - Christopher Grim
16
12
  - Joe Corcoran
17
- - Peter van Dijk
18
13
  - Sven Fuchs
19
14
  - Aakriti Gupta
20
15
  - Josh Kalderimis
21
- - Piotr Sarnacki
22
16
  - Ke Zhu
23
- - Max Barnash
17
+ - Piotr Sarnacki
24
18
  - Renée Hendricksen
25
19
  - carlad
26
- - Carlos Palhares
27
- - Dan Buch
28
20
  - María de Antón
29
- - Mathias Meyer
30
21
  - Matt Toothman
31
22
  - mariadeanton
32
23
  - techgaun
@@ -41,54 +32,38 @@ authors:
41
32
  - Ivan Pozdeev
42
33
  - Joep van Delft
43
34
  - Stefan Nordhausen
44
- - Thais Camilo and Konstantin Haase
45
35
  - Tobias Bieniek
46
36
  - Adam Baxter
47
- - Adam Lavin
48
- - Adrien Brault
49
37
  - Alfie John
50
38
  - Aloïs Thévenot
51
39
  - Basarat Ali Syed
52
- - Benjamin Manns
53
40
  - Christian Höltje
54
41
  - Dani Hodovic
55
- - Daniel Chatfield
56
42
  - Dominic Jodoin
57
43
  - Eli Schwartz
58
- - Eric Herot
59
44
  - Eugene K
60
45
  - George Millo
46
+ - Greg Jones
61
47
  - Gunter Grodotzki
62
48
  - Harald Nordgren
63
49
  - HaraldNordgren
64
50
  - Igor
65
51
  - Iulian Onofrei
66
52
  - Jacob Atzen
67
- - Jacob Burkhart
68
53
  - James Nylen
69
54
  - Joe Rafaniello
70
55
  - Jon-Erik Schneiderhan
71
56
  - Jonas Chromik
72
- - Jonne Haß
73
- - Julia S.Simon
74
- - Justin Lambert
75
- - Laurent Petit
76
- - Maarten van Vliet
77
57
  - Marco Craveiro
78
- - Mario Visic
58
+ - Marek Marczykowski-Górecki
79
59
  - Matt
80
60
  - Matteo Sumberaz
81
61
  - Matthias Bussonnier
82
- - Michael Mior
83
62
  - Michael S. Fischer
84
- - Miro Hrončok
85
- - Neamar
86
63
  - Nero Leung
87
- - Nicolas Bessi (nbessi)
88
64
  - Nikhil Owalekar
89
65
  - Peter Bengtsson
90
66
  - Peter Drake
91
- - Raphaël Pinson
92
67
  - Rob Hoelz
93
68
  - Robert Grider
94
69
  - Robert Van Voorhees
@@ -96,18 +71,13 @@ authors:
96
71
  - Tahsin Hasan
97
72
  - Titus
98
73
  - Titus Wormer
99
- - Tobias Wilken
100
- - Zachary Gershman
101
- - Zachary Scott
102
74
  - designerror
103
75
  - ia
104
- - jeffdh
105
- - john muhl
106
76
  - slewt
107
77
  autorequire:
108
78
  bindir: bin
109
79
  cert_chain: []
110
- date: 2020-09-22 00:00:00.000000000 Z
80
+ date: 2020-10-22 00:00:00.000000000 Z
111
81
  dependencies:
112
82
  - !ruby/object:Gem::Dependency
113
83
  name: faraday
@@ -271,29 +241,19 @@ dependencies:
271
241
  version: '0.6'
272
242
  description: CLI and Ruby client library for Travis CI
273
243
  email:
274
- - konstantin.mailinglists@googlemail.com
275
244
  - asari.ruby@gmail.com
276
- - j@zatigo.com
277
- - aa1ronham@gmail.com
245
+ - konstantin.mailinglists@googlemail.com
278
246
  - piotrm@travis-ci.org
279
- - me@henrikhodne.com
280
247
  - b@chromatin.ca
281
- - henrik@hodne.io
282
- - p.morsou@gmail.com
283
248
  - chrisg@luminal.io
284
249
  - joe@corcoran.io
285
- - peter.van.dijk@netherlabs.nl
286
250
  - me@svenfuchs.com
287
251
  - josh.kalderimis@gmail.com
288
- - drogus@gmail.com
289
252
  - kzhu@us.ibm.com
290
- - i.am@anhero.ru
253
+ - drogus@gmail.com
291
254
  - renee@travis-ci.org
292
255
  - aakritigupta@users.noreply.github.com
293
- - me@xjunior.me
294
- - dan@meatballhat.com
295
256
  - mariadeanton@gmail.com
296
- - meyer@paperplanes.de
297
257
  - matt.toothman@aver.io
298
258
  - carlad@users.noreply.github.com
299
259
  - coolsamar207@gmail.com
@@ -308,69 +268,48 @@ email:
308
268
  - igor@travis-ci.org
309
269
  - vano@mail.mipt.ru
310
270
  - stefan.nordhausen@immobilienscout24.de
311
- - dev+narwen+rkh@rkh.im
312
271
  - tobias.bieniek@gmail.com
313
272
  - github@voltagex.org
314
- - adam@lavoaster.co.uk
315
- - adrien.brault@gmail.com
316
273
  - 33c6c91f3bb4a391082e8a29642cafaf@alfie.wtf
317
274
  - aloisthevenot@srxp.com
318
275
  - basaratali@gmail.com
319
- - benmanns@gmail.com
320
276
  - docwhat@gerf.org
321
277
  - danihodovic@users.noreply.github.com
322
- - chatfielddaniel@gmail.com
323
278
  - dominic@travis-ci.com
324
279
  - eschwartz@archlinux.org
325
- - eric.github@herot.com
326
280
  - 34233075+eugene-kulak@users.noreply.github.com
327
281
  - georgejulianmillo@gmail.com
282
+ - greg.jones@gmail.com
328
283
  - gunter@grodotzki.co.za
329
284
  - haraldnordgren@gmail.com
330
285
  - igorwwwwwwwwwwwwwwwwwwww@users.noreply.github.com
331
286
  - 6d0847b9@opayq.com
332
287
  - jatzen@gmail.com
333
- - jburkhart@engineyard.com
334
288
  - jnylen@gmail.com
335
289
  - jrafanie@users.noreply.github.com
336
290
  - joep@travis-ci.org
337
291
  - joepvd@users.noreply.github.com
338
292
  - jon-erik.schneiderhan@meyouhealth.com
339
293
  - Jonas.Chromik@student.hpi.uni-potsdam.de
340
- - me@jhass.eu
341
- - julia.simon@biicode.com
342
- - jlambert@eml.cc
343
- - laurent.petit@gmail.com
344
- - maartenvanvliet@gmail.com
345
294
  - marco.craveiro@gmail.com
346
- - mario@mariovisic.com
295
+ - marmarek@invisiblethingslab.com
347
296
  - mtoothman@users.noreply.github.com
348
297
  - gnappoms@gmail.com
349
298
  - bussonniermatthias@gmail.com
350
- - mmior@uwaterloo.ca
351
299
  - mfischer@zendesk.com
352
- - miro@hroncok.cz
353
- - neamar@neamar.fr
354
300
  - neroleung@gmail.com
355
- - nbessi@users.noreply.github.com
356
301
  - nowalekar@tigetext.com
357
302
  - peterbe@mozilla.com
358
303
  - peter.drake@acquia.com
359
- - raphael.pinson@camptocamp.com
360
304
  - rob@hoelz.ro
361
305
  - robert.grider@northwestern.edu
362
306
  - rcvanvo@gmail.com
363
307
  - simon.cropp@gmail.com
364
308
  - 51903216+Tahsin-travis-ci@users.noreply.github.com
365
309
  - tituswormer@gmail.com
366
- - tw@cloudcontrol.de
367
- - pair+zg@pivotallabs.com
368
- - e@zzak.io
369
310
  - carla@travis-ci.org
370
311
  - designerror@yandex.ru
371
312
  - isaac.ardis@gmail.com
372
- - jeffdh@gmail.com
373
- - git@johnmuhl.com
374
313
  - leland@lcweathers.net
375
314
  executables:
376
315
  - travis
@@ -583,7 +522,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
583
522
  - !ruby/object:Gem::Version
584
523
  version: 1.3.1
585
524
  requirements: []
586
- rubygems_version: 3.1.2
525
+ rubygems_version: 3.0.8
587
526
  signing_key:
588
527
  specification_version: 4
589
528
  summary: Travis CI client