debian-mirror-gitlab/debian/patches/0280-relax-pg.patch

12 lines
366 B
Diff
Raw Normal View History

2017-08-22 10:30:25 +05:30
--- a/Gemfile
+++ b/Gemfile
@@ -14,7 +14,7 @@
# Supported DBs
ENV["DB"] ||= "mysql"
2017-09-10 18:21:32 +05:30
gem "mysql2", '~> 0.4.5' if ENV["DB"] == "all" || ENV["DB"] == "mysql"
2017-08-22 10:30:25 +05:30
-gem "pg", '~> 0.18.2' if ENV["DB"] == "all" || ENV["DB"] == "postgres"
+gem "pg", '~> 0.18' if ENV["DB"] == "all" || ENV["DB"] == "postgres"
2017-09-10 18:21:32 +05:30
gem 'rugged', '~> 0.26.0'
gem 'grape-route-helpers', '~> 2.0'