aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-01-04 14:20:27 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-01-04 14:20:36 -0200
commit3fb32cfe7c27090e790783aa33763cc61ab0473f (patch)
treef4c927b0f98df42adb75b532cb88d6f790541aa2 /Gemfile
parent4b2b595992821688615b4771bf1939b5186815e8 (diff)
downloadrails-3fb32cfe7c27090e790783aa33763cc61ab0473f.tar.gz
rails-3fb32cfe7c27090e790783aa33763cc61ab0473f.tar.bz2
rails-3fb32cfe7c27090e790783aa33763cc61ab0473f.zip
Revert "use pg 0.11.0 under ruby 1.8.7"
There's a new pg release, no need for this anymore This reverts commit 0b5cda73e2f5d29420afb41d5ed6908baf624934.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 7082f875dc..307ba8f0b8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -60,11 +60,7 @@ platforms :ruby do
gem 'sqlite3', '~> 1.3.5'
group :db do
- if RUBY_VERSION == '1.8.7'
- gem 'pg', '0.11.0'
- else
- gem 'pg', '>= 0.11.0'
- end
+ gem 'pg', '>= 0.11.0'
gem 'mysql', '>= 2.8.1'
gem 'mysql2', '>= 0.3.10'
end