summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 99645c067f0ee4975f80109537ece34ab589b997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
#bundler_args: --binstubs
language: ruby

# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
  - 1.8.7
  - 1.9.3
  - 2.0.0
  - 2.1
  - 2.2
  - 2.3.3
  - 2.4.0
matrix:
  include:
    - rvm: jruby
      env: JRUBY_OPTS="--2.0"
script: "bundle exec rake"
sudo: false