travis 1.10.0.pre.rc4 → 1.10.0
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 +4 -4
- data/README.md +8 -54
- data/lib/travis/version.rb +1 -1
- data/travis.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c43c36338df2caf61cc370c8d5c76d2b9a872ba0ca3217af2c35ea65ad94f49b
|
4
|
+
data.tar.gz: 063de6b1bc5396f674a44c1641d67b9a6f9d6746f439fa6da15d4df3de3962b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c119270f7fbc61df3cc2c9a0399b6beb22290a4075d089a1a1ef54f92d15654dd7e2f1dc8093b33f20b240c5d9cbefbc0ef5a00b1a6ef2fcf05beac9a4c4a4d2
|
7
|
+
data.tar.gz: 7c5787aec306eda48dcdbab9ce598f30528654a736bc2023983289cd59fd837e1f74734d3b99814853006fe5c2b563e89e339183d8d26d3bbe8e62819b13cd7d
|
data/README.md
CHANGED
@@ -2018,7 +2018,7 @@ 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
|
2021
|
+
1.10.0
|
2022
2022
|
|
2023
2023
|
See also [Note on Ubuntu](#ubuntu) below.
|
2024
2024
|
|
@@ -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:
|
2075
|
-
|
2076
|
-
$ sudo yum install ruby ruby-devel
|
2077
|
-
|
2078
|
-
Arch Linux:
|
2065
|
+
$ sudo apt-get install ruby
|
2079
2066
|
|
2080
|
-
|
2067
|
+
For other Linux distributions, refer to their respective documentation.
|
2081
2068
|
|
2082
2069
|
#### Ruby versioning tools
|
2083
2070
|
|
@@ -2087,39 +2074,6 @@ 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`.
|
data/lib/travis/version.rb
CHANGED
data/travis.gemspec
CHANGED
@@ -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
|
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"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: travis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.0
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konstantin Haase
|
@@ -579,9 +579,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
579
579
|
version: 2.3.0
|
580
580
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
581
581
|
requirements:
|
582
|
-
- - "
|
582
|
+
- - ">="
|
583
583
|
- !ruby/object:Gem::Version
|
584
|
-
version:
|
584
|
+
version: '0'
|
585
585
|
requirements: []
|
586
586
|
rubygems_version: 3.1.2
|
587
587
|
signing_key:
|