aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gemfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index fef93d91ab..fb859e89eb 100644
--- a/Gemfile
+++ b/Gemfile
@@ -67,7 +67,11 @@ platforms :ruby do
gem 'sqlite3', '~> 1.3.5'
group :db do
- gem 'pg', '>= 0.11.0'
+ if RUBY_VERSION < '1.9.3'
+ gem 'pg', '>= 0.11.0', '< 0.18'
+ else
+ gem 'pg', '>= 0.11.0'
+ end
gem 'mysql', '>= 2.8.1'
gem 'mysql2', '>= 0.3.10'
end