Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2015-08-20 17:58:58 +0300
committerXhmikosR <xhmikosr@gmail.com>2015-08-20 18:08:21 +0300
commit412aa51be062ecea9412d8b4013e0f168e228089 (patch)
tree544d254ca13abb34aca3465258bb321b219dd4ee
parentf697d6a7ca48904e04cbfedd3be35a885b46c0e7 (diff)
Update Travis config.
Test Ruby 2.0 and remove 1.9.3. This should fix the build and shouldn't matter since 1.9.3 is very old.
-rw-r--r--.travis.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index face183..ea3fce0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,13 +8,19 @@ git:
node_js:
- "0.12"
+env:
+ matrix:
+ - RUBY_VERSION=2.0
+
before_install:
- - rvm use 1.9.3
+ - rvm install $RUBY_VERSION
+ - rvm use $RUBY_VERSION --fuzzy
+ - export GEMDIR=$(rvm gemdir)
install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- - travis_retry gem install --no-document "jekyll:~>2.5.3" "rouge:~>1.8" "sass:~>3.4"
+ - travis_retry gem install --no-document "jekyll:~>2.5.3" "rouge:~>1.9" "sass:~>3.4"
matrix:
fast_finish: true