2016-05-18 10:41:11 -04:00
|
|
|
# Use container-based infrastructure
|
|
|
|
sudo: false
|
2012-10-28 08:26:10 -04:00
|
|
|
language: ruby
|
2016-05-18 10:41:11 -04:00
|
|
|
# Travis bug, see https://github.com/bundler/bundler/pull/3559
|
|
|
|
before_install: gem update bundler
|
2014-06-15 14:08:16 -04:00
|
|
|
cache: bundler
|
2012-10-28 08:26:10 -04:00
|
|
|
rvm:
|
2014-06-15 15:01:22 -04:00
|
|
|
- ruby-head
|
2016-05-18 10:51:24 -04:00
|
|
|
- 2.3.0 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
|
2015-06-24 15:54:11 -04:00
|
|
|
- 2.2
|
|
|
|
- 2.1
|
2013-06-29 18:43:31 -04:00
|
|
|
- 2.0.0
|
2012-10-28 08:26:10 -04:00
|
|
|
- 1.9.3
|
|
|
|
- 1.9.2
|
|
|
|
- 1.8.7
|
|
|
|
- ree
|
2014-06-15 15:01:22 -04:00
|
|
|
- jruby-head
|
2012-10-28 08:26:10 -04:00
|
|
|
- jruby-19mode
|
2014-06-15 15:01:22 -04:00
|
|
|
- jruby-18mode
|
2014-02-21 15:48:22 -05:00
|
|
|
- rbx-2
|
2014-06-15 15:01:22 -04:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- rvm: ruby-head
|
|
|
|
- rvm: jruby-head
|
2016-05-18 11:50:59 -04:00
|
|
|
- rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem
|
2014-06-15 15:01:22 -04:00
|
|
|
fast_finish: true
|