summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c9411ed357e0f47ec1b3b4814d36c22bf1248d5c (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
26
27
28
# Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
bundler_args: --binstubs

# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
  - 1.8.6
  - 1.8.7
  - 1.9.2
  - 1.9.3
  - rbx-18mode
  - rbx-19mode
  - ree
  - jruby-18mode
  - jruby-19mode
  - jruby-1.7.0.preview2-18mode
  - jruby-1.7.0.preview2-19mode
  - jruby-head-18mode
  - jruby-head-19mode
  - ruby-head
matrix:
  allow_failures:
      - rvm: 1.8.6
      - rvm: jruby-1.7.0.preview2-18mode
      - rvm: jruby-1.7.0.preview2-19mode
      - rvm: jruby-head-18mode
      - rvm: jruby-head-19mode

script: "bundle exec rake"