From 13877d378785111e39ed94e223209e4c319ee147 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Thu, 3 Nov 2016 13:10:26 +0000 Subject: The pg gem has started requiring Ruby 2.0+ from 0.19.0 --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 30713ba5c1..8dffcee105 100644 --- a/Gemfile +++ b/Gemfile @@ -94,6 +94,8 @@ platforms :ruby do group :db do if RUBY_VERSION < '1.9.3' gem 'pg', '>= 0.11.0', '< 0.18' + elsif RUBY_VERSION < '2.0.0' + gem 'pg', '>= 0.11.0', '< 0.19' else gem 'pg', '>= 0.11.0' end -- cgit v1.2.3