summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 84aaf6c9f720133e091f4f9775f5cf84cb3a1b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cache: bundler
before_install:
  - |
    export RVM_CURRENT=`rvm current|cut -c6-8`
    if [ "${RVM_CURRENT}" = "2.0" ] || \
       [ "${RVM_CURRENT}" = "2.1" ] || \
       [ "${RVM_CURRENT}" = "2.2" ]; then
      gem install bundler -v '< 2'
    fi

rvm:
  - 2.0.0
  - 2.1
  - 2.2
  - 2.3.4
  - 2.4.6
  - 2.5.5
  - 2.6.3
  - jruby-9.2.7.0
  - jruby-head
  - ruby-head
notifications:
  email:
    on_success: change
    on_failure: always