Skip to content

Commit b69c62a

Browse files
committed
Relax sqlite3 pinning to major version
1 parent f8f8494 commit b69c62a

19 files changed

+34
-34
lines changed

Appraisals

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@ appraisals = {
1414
instance_eval(&rails_dependencies)
1515

1616
gem 'rails', '~> 6.1.0'
17-
gem 'sqlite3', '~> 1.4.0', platform: %i[ruby mswin mingw]
17+
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw]
1818
end,
1919
rails_7_0:
2020
proc do
2121
instance_eval(&rails_dependencies)
2222

2323
gem 'rails', '~> 7.0.0'
24-
gem 'sqlite3', '~> 1.4.0', platform: %i[ruby mswin mingw]
24+
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw]
2525
end,
2626
rails_7_1:
2727
proc do
2828
instance_eval(&rails_dependencies)
2929

3030
gem 'rails', '~> 7.1.0'
31-
gem 'sqlite3', '~> 1.4.0', platform: %i[ruby mswin mingw]
31+
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw]
3232
end,
3333
rails_7_2:
3434
proc do
3535
instance_eval(&rails_dependencies)
3636

3737
gem 'rails', '~> 7.2.0'
38-
gem 'sqlite3', '~> 1.4.0', platform: %i[ruby mswin mingw]
38+
gem 'sqlite3', '~> 1.4', platform: %i[ruby mswin mingw]
3939
end,
4040
rails_8_0:
4141
proc do

gemfiles/no_rails_rspec_gte_3_10.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"

gemfiles/no_rails_rspec_gte_3_13.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"

gemfiles/no_rails_rspec_lt_3_10.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"

gemfiles/rails_6_1_rspec_gte_3_10.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"
@@ -19,7 +19,7 @@ gem "jdbc-sqlite3", platform: :jruby
1919
gem "net-ftp"
2020
gem "combustion"
2121
gem "rails", "~> 6.1.0"
22-
gem "sqlite3", "~> 1.4.0", platform: [:ruby, :mswin, :mingw]
22+
gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw]
2323
gem "rspec", "3.12.0"
2424
gem "rspec-core", "3.12.0"
2525
gem "rspec-expectations", "3.12.3"

gemfiles/rails_6_1_rspec_gte_3_13.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"
@@ -19,7 +19,7 @@ gem "jdbc-sqlite3", platform: :jruby
1919
gem "net-ftp"
2020
gem "combustion"
2121
gem "rails", "~> 6.1.0"
22-
gem "sqlite3", "~> 1.4.0", platform: [:ruby, :mswin, :mingw]
22+
gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw]
2323
gem "rspec", "3.13.0"
2424
gem "rspec-core", "3.13.0"
2525
gem "rspec-expectations", "3.13.0"

gemfiles/rails_6_1_rspec_lt_3_10.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"
@@ -19,7 +19,7 @@ gem "jdbc-sqlite3", platform: :jruby
1919
gem "net-ftp"
2020
gem "combustion"
2121
gem "rails", "~> 6.1.0"
22-
gem "sqlite3", "~> 1.4.0", platform: [:ruby, :mswin, :mingw]
22+
gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw]
2323
gem "rspec", "~> 3.9.0"
2424
gem "rspec-rails"
2525

gemfiles/rails_7_0_rspec_gte_3_10.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"
@@ -19,7 +19,7 @@ gem "jdbc-sqlite3", platform: :jruby
1919
gem "net-ftp"
2020
gem "combustion"
2121
gem "rails", "~> 7.0.0"
22-
gem "sqlite3", "~> 1.4.0", platform: [:ruby, :mswin, :mingw]
22+
gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw]
2323
gem "rspec", "3.12.0"
2424
gem "rspec-core", "3.12.0"
2525
gem "rspec-expectations", "3.12.3"

gemfiles/rails_7_0_rspec_gte_3_13.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"
@@ -19,7 +19,7 @@ gem "jdbc-sqlite3", platform: :jruby
1919
gem "net-ftp"
2020
gem "combustion"
2121
gem "rails", "~> 7.0.0"
22-
gem "sqlite3", "~> 1.4.0", platform: [:ruby, :mswin, :mingw]
22+
gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw]
2323
gem "rspec", "3.13.0"
2424
gem "rspec-core", "3.13.0"
2525
gem "rspec-expectations", "3.13.0"

gemfiles/rails_7_0_rspec_lt_3_10.gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
gem "appraisal", git: "https://github.com/thoughtbot/appraisal"
5+
gem "appraisal", "~> 2.5"
66
gem "bundler-audit"
77
gem "childprocess"
88
gem "climate_control"
@@ -19,7 +19,7 @@ gem "jdbc-sqlite3", platform: :jruby
1919
gem "net-ftp"
2020
gem "combustion"
2121
gem "rails", "~> 7.0.0"
22-
gem "sqlite3", "~> 1.4.0", platform: [:ruby, :mswin, :mingw]
22+
gem "sqlite3", "~> 1.4", platform: [:ruby, :mswin, :mingw]
2323
gem "rspec", "~> 3.9.0"
2424
gem "rspec-rails"
2525

0 commit comments

Comments
 (0)