Skip to content

Commit

Permalink
Fix failing tests for Rails 6.0, 6.1, 7.0, 7.1 by pinning down sqlite…
Browse files Browse the repository at this point in the history
…3 version
  • Loading branch information
kiskoza committed Jun 16, 2024
1 parent 508d3ba commit 911cee0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spec/gemfiles/Gemfile.rails-6.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec path: '../../'

gem 'rails', "~> 6.0.0"
gem 'responders', '~> 3.0'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 3.0'
gem "jquery-rails"
gem "thin"
Expand Down
2 changes: 1 addition & 1 deletion spec/gemfiles/Gemfile.rails-6.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec path: '../../'

gem 'rails', "~> 6.1.0"
gem 'responders', '~> 3.0'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 3.0'
gem "jquery-rails"
gem "thin"
Expand Down
2 changes: 1 addition & 1 deletion spec/gemfiles/Gemfile.rails-7.0
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gemspec path: '../../'

gem 'rails', "~> 7.0.0"
gem 'responders', '~> 3.0'
gem 'sqlite3'
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 3.0'
gem "jquery-rails"
gem "thin"
Expand Down
4 changes: 3 additions & 1 deletion spec/gemfiles/Gemfile.rails-7.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ gemspec path: '../../'

gem 'rails', '~> 7.1.0'
gem 'responders', '~> 3.0'
gem 'sqlite3'
# Could sqlite3 constrains when this PR get released
# https://github.com/rails/rails/pull/51592
gem 'sqlite3', '~> 1.4'
gem 'sprockets', '~> 4.0'
gem 'jquery-rails'
gem 'thin'
Expand Down

0 comments on commit 911cee0

Please sign in to comment.