aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-07-16 02:27:03 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-07-16 02:27:13 -0500
commit8df284a0e9fd075a7e77cbb578532950148d0f24 (patch)
tree1615b917bba685031261d5ef87f23a2eabd594b1 /Gemfile
parenta929b4d4c59551189b8162f30b061c6ed5755bd5 (diff)
downloadrails-8df284a0e9fd075a7e77cbb578532950148d0f24.tar.gz
rails-8df284a0e9fd075a7e77cbb578532950148d0f24.tar.bz2
rails-8df284a0e9fd075a7e77cbb578532950148d0f24.zip
Lock mysql2 version to 0.3.11 since 0.3.12 is failing right now. Check #11457 for details
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 13bee8ee5e..748d287b20 100644
--- a/Gemfile
+++ b/Gemfile
@@ -56,7 +56,9 @@ platforms :ruby do
group :db do
gem 'pg', '>= 0.11.0'
gem 'mysql', '>= 2.9.0'
- gem 'mysql2', '>= 0.3.10'
+
+ # TODO: Relax dependency version after of fix #11457
+ gem 'mysql2', '0.3.11'
end
end