From 4653feab9637720dc5b3cccec8257f3a2080a1dc Mon Sep 17 00:00:00 2001 From: Mike Gehard Date: Tue, 12 Jul 2011 19:04:53 -0600 Subject: [PATCH] Relax pg version dependency a bit. The Gemfile specifies pg ~>0.9.0 and Rails 3.1 specifies pg 0.11 so there is no way for bundler to install pg for a new download. --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index f27e05e..a693f3c 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,7 @@ group :test do platforms :ruby do gem "mysql", "~> 2.8.1" gem "mysql2", "~> 0.2.4" - gem "pg", "~> 0.9.0" + gem "pg", "~> 0.9" gem "sqlite3-ruby", "~> 1.3.1" end diff --git a/Gemfile.lock b/Gemfile.lock index b2485e9..e54001c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -40,7 +40,7 @@ GEM multi_json (1.0.3) mysql (2.8.1) mysql2 (0.2.7) - pg (0.9.0) + pg (0.11.0) rake (0.8.7) ruby-debug (0.10.4) columnize (>= 0.1) @@ -76,7 +76,7 @@ DEPENDENCIES jeweler (>= 1.4.0) mysql (~> 2.8.1) mysql2 (~> 0.2.4) - pg (~> 0.9.0) + pg (~> 0.9) rake ruby-debug (= 0.10.4) ruby-debug-base (= 0.10.4)