aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorSergey Nartimov <just.lest@gmail.com>2012-01-03 14:47:31 +0300
committerSergey Nartimov <just.lest@gmail.com>2012-01-03 14:47:31 +0300
commit0b5cda73e2f5d29420afb41d5ed6908baf624934 (patch)
tree7c6aa8c64c69ff80cf67db2fbb44565ca1276381 /Gemfile
parente369c4e67f1bc56275960033ed500f12ae70f8a1 (diff)
downloadrails-0b5cda73e2f5d29420afb41d5ed6908baf624934.tar.gz
rails-0b5cda73e2f5d29420afb41d5ed6908baf624934.tar.bz2
rails-0b5cda73e2f5d29420afb41d5ed6908baf624934.zip
use pg 0.11.0 under ruby 1.8.7
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 307ba8f0b8..7082f875dc 100644
--- a/Gemfile
+++ b/Gemfile
@@ -60,7 +60,11 @@ platforms :ruby do
gem 'sqlite3', '~> 1.3.5'
group :db do
- gem 'pg', '>= 0.11.0'
+ if RUBY_VERSION == '1.8.7'
+ gem 'pg', '0.11.0'
+ else
+ gem 'pg', '>= 0.11.0'
+ end
gem 'mysql', '>= 2.8.1'
gem 'mysql2', '>= 0.3.10'
end