Skip to content

Commit 1c7d2fa

Browse files
committed
Update Travis config.
Test Ruby 2.0 and 2.2; remove 1.9.3. This should fix the build and shouldn't matter since 1.9.3 is very old.
1 parent f697d6a commit 1c7d2fa

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,20 @@ git:
88
node_js:
99
- "0.12"
1010

11+
env:
12+
matrix:
13+
- RUBY_VERSION=2.0
14+
- RUBY_VERSION=2.2
15+
1116
before_install:
12-
- rvm use 1.9.3
17+
- rvm install $RUBY_VERSION
18+
- rvm use $RUBY_VERSION --fuzzy
19+
- export GEMDIR=$(rvm gemdir)
1320

1421
install:
1522
- travis_retry npm install -g grunt-cli
1623
- travis_retry npm install
17-
- travis_retry gem install --no-document "jekyll:~>2.5.3" "rouge:~>1.8" "sass:~>3.4"
24+
- travis_retry gem install --no-document "jekyll:~>2.5.3" "rouge:~>1.9" "sass:~>3.4"
1825

1926
matrix:
2027
fast_finish: true

0 commit comments

Comments
 (0)