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
4
4
fast_finish : true
5
5
script : rake $RUN
6
6
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
+
7
14
matrix :
8
15
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'
13
24
14
- # We use 2.1.4 to differentiate the rvm version
25
+ # We use 2.1.9 to differentiate the rvm version
15
26
# 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'
18
29
19
30
allow_failures :
20
- - rvm : 2.1.4
31
+ - rvm : 2.1.9
21
32
Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
gemspec
3
+
3
4
gem 'opal' , ENV [ 'OPAL_VERSION' ] || '~> 0.10.0'
4
5
gem '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