Skip to content

Commit 407f0ff

Browse files
committed
Fix mysql2 gem version to 0.5.6 as 0.5.7 has a bug.
Update other dependencies at the same time.
1 parent 5245705 commit 407f0ff

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Gemfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ source "https://rubygems.org"
33
# Specify your gem's dependencies in positioning.gemspec
44
gemspec
55

6-
gem "rake", "~> 13.0"
6+
gem "rake", "~> 13.3"
77

8-
gem "minitest", "~> 5.0"
9-
gem "minitest-hooks", "~> 1.5.1"
10-
gem "mocha", "~> 2.1.0"
8+
gem "minitest", "~> 6.0"
9+
gem "minitest-hooks", "~> 1.5.3"
10+
gem "mocha", "~> 3.0.1"
1111

12-
gem "standard", "~> 1.3"
12+
gem "standard", "~> 1.52.0"
1313

1414
if ENV["RAILS_VERSION"]
1515
gem "activerecord", ENV["RAILS_VERSION"]
@@ -20,12 +20,12 @@ case ENV["DB"]
2020
when "sqlite"
2121
if ENV["RAILS_VERSION"] &&
2222
Gem::Version.new(ENV["RAILS_VERSION"]) >= Gem::Version.new("7.2")
23-
gem "sqlite3", "~> 2.2.0"
23+
gem "sqlite3", "~> 2.9.0"
2424
else
25-
gem "sqlite3", "~> 1.7.2"
25+
gem "sqlite3", "~> 1.7.3"
2626
end
2727
when "postgresql"
28-
gem "pg", "~> 1.5.5"
28+
gem "pg", "~> 1.6.3"
2929
else
30-
gem "mysql2", "~> 0.5.6"
30+
gem "mysql2", "0.5.6"
3131
end

0 commit comments

Comments
 (0)