1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #3657 from arunagw/mysql2_bump_master

Bump Mysql2!
This commit is contained in:
José Valim 2011-11-28 03:15:30 -08:00
commit 5f75a92c32
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ platforms :ruby do
group :db do
gem "pg", ">= 0.11.0" unless ENV['TRAVIS'] # once pg is on travis this can be removed
gem "mysql", ">= 2.8.1"
gem "mysql2", ">= 0.3.6"
gem "mysql2", ">= 0.3.10"
end
end

View file

@ -1,6 +1,6 @@
require 'active_record/connection_adapters/abstract_mysql_adapter'
gem 'mysql2', '~> 0.3.6'
gem 'mysql2', '~> 0.3.10'
require 'mysql2'
module ActiveRecord