Skip to content

Commit c47955b

Browse files
committed
Fix mysql2 version for older rails
1 parent 82d7ceb commit c47955b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

gemfiles/activerecord_4.2.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "activerecord", "~> 4.2.0"
66

77
platforms :ruby, :rbx do
8-
gem "mysql2"
8+
gem "mysql2", '~> 0.4.10'
99
gem "pg", '~> 0.21.0'
1010
gem "sqlite3"
1111
end

gemfiles/activerecord_5.0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "activerecord", "~> 5.0.0"
66

77
platforms :ruby, :rbx do
8-
gem "mysql2"
8+
gem "mysql2", '~> 0.4.10'
99
gem "pg", '~> 0.21.0'
1010
gem "sqlite3"
1111
end

gemfiles/activerecord_5.1.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source "https://rubygems.org"
55
gem "activerecord", "~> 5.1.0"
66

77
platforms :ruby, :rbx do
8-
gem "mysql2"
8+
gem "mysql2", '~> 0.4.10'
99
gem "pg"
1010
gem "sqlite3"
1111
end

0 commit comments

Comments
 (0)