.travis.yml in scoped_search-3.0.1 vs .travis.yml in scoped_search-3.1.0

- old
+ new

@@ -1,30 +1,32 @@ - language: ruby cache: bundler - sudo: false +install: +- bundle install +before_script: +- psql -c 'create database scoped_search_test;' -U postgres +- mysql -e 'create database scoped_search_test;' +script: +- bundle exec rake + rvm: - - 1.9.3 - - 2.0.0 - - 2.1.1 - - ruby-head - - jruby-19mode - - jruby-head +- "1.9" +- "2.0" +- "2.1" +- "2.2" +- ruby-head +- jruby-19mode +- jruby-head gemfile: - - Gemfile.activerecord3 - - Gemfile.activerecord40 - - Gemfile.activerecord41 +- Gemfile.activerecord32 +- Gemfile.activerecord40 +- Gemfile.activerecord41 +- Gemfile.activerecord42 -before_script: - - psql -c 'create database scoped_search_test;' -U postgres - - mysql -e 'create database scoped_search_test;' - -script: bundle exec rake - matrix: - include: allow_failures: - - rvm: ruby-head - - rvm: jruby-head + - rvm: ruby-head + - rvm: jruby-head + - rvm: jruby-19mode