Commit ec2c5f1c6068a1d7d5312bd4d144a7969470d3ea

Authored by Andrew Kane
1 parent bcc7dde3

Test against Rails 6 [skip ci]

Showing 2 changed files with 10 additions and 5 deletions   Show diff stats
Gemfile
... ... @@ -3,14 +3,12 @@ source "https://rubygems.org"
3 3 # Specify your gem's dependencies in searchkick.gemspec
4 4 gemspec
5 5  
  6 +gem "activerecord", "~> 6.0.0.rc1"
  7 +gem "activejob", "~> 6.0.0.rc1"
  8 +gem "actionpack", "~> 6.0.0.rc1"
6 9 gem "sqlite3"
7   -gem "activerecord", "~> 5.2.0"
8   -gem "activejob", "~> 5.2.0"
9 10 gem "gemoji-parser"
10 11 gem "typhoeus"
11 12 gem "redis"
12 13 gem "connection_pool"
13   -
14   -# kaminari
15   -gem "actionpack"
16 14 gem "kaminari"
... ...
test/gemfiles/activerecord52.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.2.0"
... ...