diff --git a/Gemfile b/Gemfile index 944a458..7557aa3 100644 --- a/Gemfile +++ b/Gemfile @@ -3,14 +3,12 @@ source "https://rubygems.org" # Specify your gem's dependencies in searchkick.gemspec gemspec +gem "activerecord", "~> 6.0.0.rc1" +gem "activejob", "~> 6.0.0.rc1" +gem "actionpack", "~> 6.0.0.rc1" gem "sqlite3" -gem "activerecord", "~> 5.2.0" -gem "activejob", "~> 5.2.0" gem "gemoji-parser" gem "typhoeus" gem "redis" gem "connection_pool" - -# kaminari -gem "actionpack" gem "kaminari" diff --git a/test/gemfiles/activerecord52.gemfile b/test/gemfiles/activerecord52.gemfile new file mode 100644 index 0000000..525aae8 --- /dev/null +++ b/test/gemfiles/activerecord52.gemfile @@ -0,0 +1,7 @@ +source 'https://rubygems.org' + +# Specify your gem's dependencies in searchkick.gemspec +gemspec path: "../../" + +gem "sqlite3" +gem "activerecord", "~> 5.2.0" -- libgit2 0.21.0