.travis.yml in loaf-0.5.0 vs .travis.yml in loaf-0.6.0

- old
+ new

@@ -1,25 +1,43 @@ +--- language: ruby sudo: false -bundler_args: --without yard benchmarks -install: 'travis_retry bin/setup' -script: 'bundle exec appraisal rake ci' +cache: bundler +install: + - bundle install + - bundle exec bin/appraisal install +script: + - bundle exec appraisal rake ci rvm: - - 1.9.3 - 2.0.0 - - 2.1.0 - - 2.2.0 + - 2.1.10 + - 2.2.5 + - 2.3.1 + - 2.4.1 matrix: include: - - rvm: jruby-19mode - - rvm: jruby-20mode - - rvm: jruby-21mode + - rvm: jruby-9.1.1.0 - rvm: jruby-head - - rvm: rbx-2 + - rvm: ruby-head + exclude: + - rvm: 2.0.0 + gemfile: gemfiles/rails5.0.gemfile + - rvm: 2.1.10 + gemfile: gemfiles/rails5.0.gemfile + - rvm: 2.2.5 + gemfile: gemfiles/rails3.2.gemfile + - rvm: 2.3.1 + gemfile: gemfiles/rails3.2.gemfile + - rvm: 2.4.1 + gemfile: + - gemfiles/rails3.2.gemfile + - gemfiles/rails4.0.gemfile + - gemfiles/rails4.1.gemfile allow_failures: - rvm: ruby-head + - rvm: jruby-9.1.1.0 - rvm: jruby-head - - rvm: jruby-20mode - - rvm: jruby-21mode fast_finish: true branches: only: master +notifications: + email: false