File tree Expand file tree Collapse file tree 2 files changed +21
-8
lines changed
Expand file tree Collapse file tree 2 files changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,29 @@ sudo: false
44fast_finish : true
55script : rake $RUN
66
7+ before_install :
8+ # thanks to https://mediocre.com/forum/topics/phantomjs-2-and-travis-ci-we-beat-our-heads-against-a-wall-so-you-dont-have-to
9+ - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
10+ - tar -xjf phantomjs-2.0.0-ubuntu-12.04.tar.bz2
11+ # Keep track of which version of phantomjs we're running the specs against
12+ - phantomjs -v
13+
714matrix :
815 include :
9- - rvm : 2.2
10- - rvm : 2.1
11- - rvm : 1.9.3
12- - rvm : 2.0
16+ - rvm : 2.3.1
17+ env : PATH=".:$PATH"
18+ - rvm : 2.2.4
19+ env : PATH=".:$PATH"
20+ - rvm : 2.1.10
21+ env : PATH=".:$PATH" RACK_VERSION='< 2.0'
22+ - rvm : 2.0.0
23+ env : PATH=".:$PATH" RACK_VERSION='< 2.0'
1324
14- # We use 2.1.4 to differentiate the rvm version
25+ # We use 2.1.9 to differentiate the rvm version
1526 # as travis doesn't allow failures by env.
16- - rvm : 2.1.4
17- env : RUN=zepto
27+ - rvm : 2.1.9
28+ env : RUN=zepto PATH=".:$PATH" RACK_VERSION='< 2.0'
1829
1930 allow_failures :
20- - rvm : 2.1.4
31+ - rvm : 2.1.9
2132
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22gemspec
3+
34gem 'opal' , ENV [ 'OPAL_VERSION' ] || '~> 0.10.0'
45gem 'opal-rspec' , github : 'opal/opal-rspec' , submodules : true
6+ gem 'rack' , ENV [ 'RACK_VERSION' ] || '> 0'
You can’t perform that action at this time.
0 commit comments