aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-08-23 15:07:55 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2012-08-23 15:07:55 -0700
commit8d8fd13179cacd86f307e87396474bdfab9f3462 (patch)
tree7c57b0bc40d5a94aff47720613116fc4732d8ac0 /Gemfile
parente8afb84b13fc7c2fe1467ed88e1f8b5144eac4a1 (diff)
downloadrails-8d8fd13179cacd86f307e87396474bdfab9f3462.tar.gz
rails-8d8fd13179cacd86f307e87396474bdfab9f3462.tar.bz2
rails-8d8fd13179cacd86f307e87396474bdfab9f3462.zip
mysql does not build on Ruby 2.0.0 at the moment
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 30b8f9aa08..3a446f1c13 100644
--- a/Gemfile
+++ b/Gemfile
@@ -62,7 +62,7 @@ platforms :ruby do
group :db do
gem 'pg', '>= 0.11.0'
- gem 'mysql', '>= 2.8.1'
+ gem 'mysql', '>= 2.8.1' if RUBY_VERSION < '2.0.0'
gem 'mysql2', '>= 0.3.10'
end
end