summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: b1226a26f9ad475ab6b6f11f17c59c0e29df79c2 (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.1
  - 2.5.3
  - 2.6.0
  - jruby-9.2.5.0
  - jruby-head
  - ruby-head
notifications:
  email:
    on_success: change
    on_failure: always