travis 1.9.2.travis.1303.9 → 1.9.2.travis.1304.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -53
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff741d70378f70c9a589ec099bb66af70bfc9984dc422c67ce0594178689a1c6
|
4
|
+
data.tar.gz: cc6c00bd4884961c531b52bc9a4342ac4bcb817dbbfaf8a4b089c27c3341a25c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d31211cf29decb0e0a96ff642d19c693c995255a0658f0aa45b6e34ce91960e8f5f36f9d0c0a627df95125c79cbbe374a7cd951bedce11dcc680ea64479a4546
|
7
|
+
data.tar.gz: 56e44478fa8040aeee74a1fcc5e2012d0a07f7cdbacb1a5c2b3fe0881a3cb35e9fcc2859bb1adb5b3597db3d6b3891623bed8a180c8e1d4373f3dd7784a551a3
|
data/README.md
CHANGED
@@ -2041,11 +2041,12 @@ bundle exec bin/travis a-command # run your command
|
|
2041
2041
|
|
2042
2042
|
### Updating your Ruby
|
2043
2043
|
|
2044
|
-
If you have an outdated Ruby version,
|
2044
|
+
If you have an outdated Ruby version, or your OS doesn't come with Ruby pre-installed,
|
2045
|
+
you should use your package system or a Ruby Installer to install a recent Ruby.
|
2045
2046
|
|
2046
2047
|
#### Mac OS X via Homebrew
|
2047
2048
|
|
2048
|
-
|
2049
|
+
You can use [Homebrew](http://mxcl.github.io/homebrew/) to install a recent version:
|
2049
2050
|
|
2050
2051
|
$ brew install ruby
|
2051
2052
|
$ gem update --system
|
@@ -2056,28 +2057,14 @@ On Windows, we recommend using the [RubyInstaller](http://rubyinstaller.org/), w
|
|
2056
2057
|
|
2057
2058
|
#### Other Unix systems
|
2058
2059
|
|
2059
|
-
On other Unix systems, like Linux, use your package system to install Ruby.
|
2060
|
+
On other Unix systems, like Linux, use your package system to install Ruby.
|
2060
2061
|
|
2061
|
-
Debian:
|
2062
|
+
Debian, Ubuntu:
|
2062
2063
|
|
2063
|
-
$ sudo apt-get install ruby1.9.3 ruby1.9.3-dev ruby-switch
|
2064
|
-
$ sudo ruby-switch --set ruby1.9.3
|
2065
|
-
|
2066
|
-
Ubuntu:
|
2067
|
-
|
2068
|
-
$ sudo apt-get install python-software-properties
|
2069
|
-
$ sudo apt-add-repository ppa:brightbox/ruby-ng
|
2070
2064
|
$ sudo apt-get update
|
2071
|
-
$ sudo apt-get install
|
2072
|
-
$ sudo ruby-switch --set ruby2.1
|
2073
|
-
|
2074
|
-
Fedora:
|
2065
|
+
$ sudo apt-get install ruby
|
2075
2066
|
|
2076
|
-
|
2077
|
-
|
2078
|
-
Arch Linux:
|
2079
|
-
|
2080
|
-
$ sudo pacman -S ruby
|
2067
|
+
For other Linux distributions, refer to their respective documentation.
|
2081
2068
|
|
2082
2069
|
#### Ruby versioning tools
|
2083
2070
|
|
@@ -2087,45 +2074,21 @@ You can of course always compile Ruby from source, though then you are left with
|
|
2087
2074
|
|
2088
2075
|
### Troubleshooting
|
2089
2076
|
|
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
|
2106
|
-
|
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
|
2114
|
-
|
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`:
|
2116
|
-
|
2117
|
-
$ xcode-select --install
|
2118
|
-
|
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:
|
2120
|
-
|
2121
|
-
$ ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install travis
|
2122
|
-
|
2123
2077
|
#### Upgrading from travis-cli
|
2124
2078
|
|
2125
2079
|
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`.
|
2126
2080
|
|
2127
2081
|
## Version History
|
2128
2082
|
|
2083
|
+
### 1.10.0 (September 22, 2020)
|
2084
|
+
|
2085
|
+
* Requires Ruby 2.3.0 or later (2.6.0 or later is recommended)
|
2086
|
+
* Display a meaningful message when Travis API is unavailable. https://github.com/travis-ci/travis.rb/issues/753
|
2087
|
+
* Eschew `which` to find a command on the system. https://github.com/travis-ci/travis.rb/pull/765
|
2088
|
+
* Fix `--list-github-token` flag. https://github.com/travis-ci/travis.rb/pull/766
|
2089
|
+
* FFI is no longer required. https://github.com/travis-ci/travis.rb/pull/758
|
2090
|
+
* Typhoeus is no longer required, but remains supported (used if installed). https://github.com/travis-ci/travis.rb/pull/756
|
2091
|
+
|
2129
2092
|
### 1.9.1 (May 19, 2020)
|
2130
2093
|
|
2131
2094
|
* Fix `--no-interactive` flag in `encrypt` and `encryt-file` commands https://github.com/travis-ci/travis.rb/pull/738
|