summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorJared Norman <jared@super.gd>2018-12-30 16:41:55 -0800
committerJared Norman <jared@super.gd>2018-12-30 16:42:31 -0800
commit5926c1a180b594db9cd2f494a341c39114c7b589 (patch)
tree830c2e38ec235ac4f40dc0603c6eca808dc68cfa /Gemfile
parentcd5b54ce453405184a62dd0fb6d7ed918a8547b1 (diff)
Remove postgres limitation
I may come to regret this, as I do know there's some issues with some versions of ActiveRecord and pg >= 1.0, but I think this will be fine.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 5021b1a..34a2b62 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,7 +6,7 @@ branch = ENV.fetch('SOLIDUS_BRANCH', 'master')
gem "solidus", github: "solidusio/solidus", branch: branch
if ENV.fetch('DB') == 'postgres'
- gem 'pg', '~> 0.21'
+ gem 'pg'
end
group :development, :test do