Skip to content

Commit

Permalink
Fix gemfiles for 6.0
Browse files Browse the repository at this point in the history
Use rc1 version of rails and specify version of sqlite3 to make
tests run.
  • Loading branch information
eloyesp committed May 30, 2019
1 parent 01f719f commit 4b12089
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ appraise 'activerecord_5.2.2' do
end

appraise 'activerecord_6.0.0' do
gem 'actionpack', '~> 6.0.0.beta3', require: 'action_pack'
gem 'activerecord', '~> 6.0.0.beta3', require: 'active_record'
gem 'activesupport', '~> 6.0.0.beta3', require: 'active_support/all'
gem 'actionpack', '~> 6.0.0.rc1', require: 'action_pack'
gem 'activerecord', '~> 6.0.0.rc1', require: 'active_record'
gem 'activesupport', '~> 6.0.0.rc1', require: 'active_support/all'

platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
Expand All @@ -80,6 +80,6 @@ appraise 'activerecord_6.0.0' do

platforms :ruby, :mswin, :mingw do
gem 'pg', '~> 1.1.4'
gem 'sqlite3', '~> 1.3.0'
gem 'sqlite3', '~> 1.4.0'
end
end
8 changes: 4 additions & 4 deletions gemfiles/activerecord_6.0.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

source "https://rubygems.org"

gem "actionpack", "~> 6.0.0.beta3", require: "action_pack"
gem "activerecord", "~> 6.0.0.beta3", require: "active_record"
gem "activesupport", "~> 6.0.0.beta3", require: "active_support/all"
gem "actionpack", "~> 6.0.0.rc1", require: "action_pack"
gem "activerecord", "~> 6.0.0.rc1", require: "active_record"
gem "activesupport", "~> 6.0.0.rc1", require: "active_support/all"

platforms :jruby do
gem "activerecord-jdbcsqlite3-adapter"
Expand All @@ -14,7 +14,7 @@ end

platforms :ruby, :mswin, :mingw do
gem "pg", "~> 1.1.4"
gem "sqlite3", "~> 1.3.0"
gem "sqlite3", "~> 1.4.0"
end

gemspec path: "../"

0 comments on commit 4b12089

Please sign in to comment.