Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent sqlite3 2.0 except for Rails edge #1008

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem "capybara"
gem "debug"
gem "mocha"
gem "puma"
if defined?(@rails_gem_requirement) && @rails_gem_requirement
if @rails_gem_requirement
# causes Dependabot to ignore the next line and update the next gem "rails"
rails = "rails"
gem rails, @rails_gem_requirement
Expand All @@ -20,5 +20,11 @@ gem "rubocop"
gem "rubocop-shopify"
gem "selenium-webdriver"
gem "sprockets-rails"
gem "sqlite3"
if @sqlite3_requirement
# causes Dependabot to ignore the next line and update the next gem "sqlite3"
sqlite3 = "sqlite3"
gem sqlite3, @sqlite3_requirement
else
gem "sqlite3"
end
gem "yard"
1 change: 1 addition & 0 deletions gemfiles/rails_6_0.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

@rails_gem_requirement = "~> 6.0.0"
@sqlite3_requirement = "~> 1.4"

eval_gemfile "../Gemfile"
1 change: 1 addition & 0 deletions gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

@rails_gem_requirement = "~> 6.1.0"
@sqlite3_requirement = "~> 1.4"

eval_gemfile "../Gemfile"
1 change: 1 addition & 0 deletions gemfiles/rails_7_0.gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

@rails_gem_requirement = "~> 7.0.4"
@sqlite3_requirement = "~> 1.4"

eval_gemfile "../Gemfile"
Loading