travis 1.10.0 → 1.10.1.travis.1341.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c43c36338df2caf61cc370c8d5c76d2b9a872ba0ca3217af2c35ea65ad94f49b
4
- data.tar.gz: 063de6b1bc5396f674a44c1641d67b9a6f9d6746f439fa6da15d4df3de3962b3
3
+ metadata.gz: 8ba5629e8ff02579e5c633e0b116d46819b1aea46823e5185d2ad49e46b0ae4f
4
+ data.tar.gz: 0c193edc796481141bef3babefeed00c0d2523f6f4951d110f2333a6040c5634
5
5
  SHA512:
6
- metadata.gz: c119270f7fbc61df3cc2c9a0399b6beb22290a4075d089a1a1ef54f92d15654dd7e2f1dc8093b33f20b240c5d9cbefbc0ef5a00b1a6ef2fcf05beac9a4c4a4d2
7
- data.tar.gz: 7c5787aec306eda48dcdbab9ce598f30528654a736bc2023983289cd59fd837e1f74734d3b99814853006fe5c2b563e89e339183d8d26d3bbe8e62819b13cd7d
6
+ metadata.gz: 804dc8309253b61dbcf37e83197869a8f3ee0d361a3f8978ff4c2cb354cb9dd975f96038eaaa558347598ee5554f17f71edffdbbbfc75ab9c2ebea1075dd1274
7
+ data.tar.gz: 41d1dba9f1c19ed6521d7c224510e08f3fb756b3d4dfcd0ebbbed968cec8fee3c28bc6c57f6d5adffc8703b36a661ce6e09ec3888028f545cd8f1851f82e9a3e
data/README.md CHANGED
@@ -2022,6 +2022,12 @@ Now make sure everything is working:
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:
@@ -2078,8 +2084,23 @@ You can of course always compile Ruby from source, though then you are left with
2078
2084
 
2079
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`.
2080
2086
 
2087
+ #### `uninitialized constant Faraday::Error::ConnectionFailed`
2088
+
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:
2092
+
2093
+ 1. Update Typhoeus to version 1.4.0 or later
2094
+ 1. Remove typhoeus entirely
2095
+
2096
+ See https://github.com/travis-ci/travis.rb/issues/768#issuecomment-700220351 for more details.
2097
+
2081
2098
  ## Version History
2082
2099
 
2100
+ ### 1.10.1
2101
+
2102
+ * Fix `travis monitor` command https://github.com/travis-ci/travis.rb/pull/770
2103
+
2083
2104
  ### 1.10.0 (September 22, 2020)
2084
2105
 
2085
2106
  * Requires Ruby 2.3.0 or later (2.6.0 or later is recommended)
@@ -2091,7 +2112,7 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
2091
2112
 
2092
2113
  ### 1.9.1 (May 19, 2020)
2093
2114
 
2094
- * Fix `--no-interactive` flag in `encrypt` and `encryt-file` commands https://github.com/travis-ci/travis.rb/pull/738
2115
+ * Fix `--no-interactive` flag in `encrypt` and `encrypt-file` commands https://github.com/travis-ci/travis.rb/pull/738
2095
2116
  * Display commit SHA in `show` https://github.com/travis-ci/travis.rb/pull/739
2096
2117
  * Display more helpful message when GitHub token given by `--github-token` is
2097
2118
  deficient https://github.com/travis-ci/travis.rb/issues/708
@@ -2182,7 +2203,7 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
2182
2203
  * Fix SSL verification issue on OS X Yosemite and certain Linux setups.
2183
2204
  * Be more forgiving with outdated API version (Enterprise).
2184
2205
  * Better handling of multibyte characters in archived logs.
2185
- * Use more restricitve permissions for the config file.
2206
+ * Use more restrictive permissions for the config file.
2186
2207
 
2187
2208
  ### 1.7.1 (August 9, 2014)
2188
2209
 
@@ -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
 
@@ -12,34 +12,24 @@ 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",
41
32
  "Alpha",
42
- "Andreas Tiefenthaler",
43
33
  "Beau Bouchard",
44
34
  "Corinna Wiesner",
45
35
  "David Rodr\xC3\xADguez",
@@ -49,54 +39,39 @@ Gem::Specification.new do |s|
49
39
  "Ivan Pozdeev",
50
40
  "Joep van Delft",
51
41
  "Stefan Nordhausen",
52
- "Thais Camilo and Konstantin Haase",
53
42
  "Tobias Bieniek",
43
+ "xflotus",
54
44
  "Adam Baxter",
55
- "Adam Lavin",
56
- "Adrien Brault",
57
45
  "Alfie John",
58
46
  "Alo\xC3\xAFs Th\xC3\xA9venot",
47
+ "Andreas Tiefenthaler",
59
48
  "Basarat Ali Syed",
60
- "Benjamin Manns",
61
49
  "Christian H\xC3\xB6ltje",
62
50
  "Dani Hodovic",
63
- "Daniel Chatfield",
64
51
  "Dominic Jodoin",
65
52
  "Eli Schwartz",
66
- "Eric Herot",
67
53
  "Eugene K",
68
- "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,47 +79,31 @@ 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",
145
105
  "aakriti@travis-ci.org",
146
106
  "AlphaWong@users.noreply.github.com",
147
- "at@an-ti.eu",
148
107
  "127320+BeauBouchard@users.noreply.github.com",
149
108
  "wiesner@avarteq.de",
150
109
  "deivid.rodriguez@gmail.com",
@@ -153,69 +112,49 @@ Gem::Specification.new do |s|
153
112
  "igor@travis-ci.org",
154
113
  "vano@mail.mipt.ru",
155
114
  "stefan.nordhausen@immobilienscout24.de",
156
- "dev+narwen+rkh@rkh.im",
157
115
  "tobias.bieniek@gmail.com",
116
+ "0xflotus@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",
120
+ "at@an-ti.eu",
163
121
  "basaratali@gmail.com",
164
- "benmanns@gmail.com",
165
122
  "docwhat@gerf.org",
166
123
  "danihodovic@users.noreply.github.com",
167
- "chatfielddaniel@gmail.com",
168
124
  "dominic@travis-ci.com",
169
125
  "eschwartz@archlinux.org",
170
- "eric.github@herot.com",
171
126
  "34233075+eugene-kulak@users.noreply.github.com",
172
- "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,37 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1.travis.1341.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
33
24
  - Alpha
34
- - Andreas Tiefenthaler
35
25
  - Beau Bouchard
36
26
  - Corinna Wiesner
37
27
  - David Rodríguez
@@ -41,54 +31,39 @@ authors:
41
31
  - Ivan Pozdeev
42
32
  - Joep van Delft
43
33
  - Stefan Nordhausen
44
- - Thais Camilo and Konstantin Haase
45
34
  - Tobias Bieniek
35
+ - xflotus
46
36
  - Adam Baxter
47
- - Adam Lavin
48
- - Adrien Brault
49
37
  - Alfie John
50
38
  - Aloïs Thévenot
39
+ - Andreas Tiefenthaler
51
40
  - Basarat Ali Syed
52
- - Benjamin Manns
53
41
  - Christian Höltje
54
42
  - Dani Hodovic
55
- - Daniel Chatfield
56
43
  - Dominic Jodoin
57
44
  - Eli Schwartz
58
- - Eric Herot
59
45
  - Eugene K
60
- - 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: 2021-01-04 00:00:00.000000000 Z
111
81
  dependencies:
112
82
  - !ruby/object:Gem::Dependency
113
83
  name: faraday
@@ -271,35 +241,24 @@ 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
300
260
  - aakriti@travis-ci.org
301
261
  - AlphaWong@users.noreply.github.com
302
- - at@an-ti.eu
303
262
  - 127320+BeauBouchard@users.noreply.github.com
304
263
  - wiesner@avarteq.de
305
264
  - deivid.rodriguez@gmail.com
@@ -308,69 +267,49 @@ email:
308
267
  - igor@travis-ci.org
309
268
  - vano@mail.mipt.ru
310
269
  - stefan.nordhausen@immobilienscout24.de
311
- - dev+narwen+rkh@rkh.im
312
270
  - tobias.bieniek@gmail.com
271
+ - 0xflotus@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
275
+ - at@an-ti.eu
318
276
  - basaratali@gmail.com
319
- - benmanns@gmail.com
320
277
  - docwhat@gerf.org
321
278
  - danihodovic@users.noreply.github.com
322
- - chatfielddaniel@gmail.com
323
279
  - dominic@travis-ci.com
324
280
  - eschwartz@archlinux.org
325
- - eric.github@herot.com
326
281
  - 34233075+eugene-kulak@users.noreply.github.com
327
- - 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
@@ -579,11 +518,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
579
518
  version: 2.3.0
580
519
  required_rubygems_version: !ruby/object:Gem::Requirement
581
520
  requirements:
582
- - - ">="
521
+ - - ">"
583
522
  - !ruby/object:Gem::Version
584
- version: '0'
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