aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
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