Commit d2a0f82d4a2d525cc7b92349a94f3e08d5a3f115

Authored by Andrew
1 parent f93cde88

Test ActiveRecord 5.1 now that 5.2 is out

.travis.yml
... ... @@ -15,6 +15,7 @@ notifications:
15 15 on_failure: change
16 16 gemfile:
17 17 - Gemfile
  18 + - test/gemfiles/activerecord51.gemfile
18 19 - test/gemfiles/activerecord50.gemfile
19 20 - test/gemfiles/activerecord42.gemfile
20 21 - test/gemfiles/mongoid5.gemfile
... ...
test/gemfiles/activerecord51.gemfile 0 → 100644
... ... @@ -0,0 +1,7 @@
  1 +source 'https://rubygems.org'
  2 +
  3 +# Specify your gem's dependencies in searchkick.gemspec
  4 +gemspec path: "../../"
  5 +
  6 +gem "sqlite3"
  7 +gem "activerecord", "~> 5.1.0"
... ...