debian-mirror-gitlab/debian/patches/0108-make-mysql-optional.patch

24 lines
731 B
Diff
Raw Normal View History

2016-01-23 21:05:43 +05:30
From 85ec69dca3e07b27079efe1392574d7fb317186f Mon Sep 17 00:00:00 2001
From: Pirate Praveen <praveen@debian.org>
Date: Sat, 23 Jan 2016 10:14:15 -0500
Subject: [PATCH] allow specifying DB choice via ENV variable
---
Gemfile | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
2017-08-17 23:00:15 +05:30
--- a/Gemfile
+++ b/Gemfile
2018-05-09 12:38:34 +05:30
@@ -24,8 +24,9 @@
gem 'default_value_for', gem_versions['default_value_for']
2016-01-23 21:05:43 +05:30
# Supported DBs
2018-03-18 12:27:51 +05:30
-gem 'mysql2', '~> 0.4.10', group: :mysql
2016-08-24 20:52:28 +05:30
-gem 'pg', '~> 0.18.2', group: :postgres
2018-03-18 12:27:51 +05:30
+ENV["DB"] ||= "postgresql"
+gem 'mysql2', '~> 0.4.10' if ENV["DB"] == "all" || ENV["DB"] == "mysql"
+gem 'pg', '~> 0.18.2' if ENV["DB"] == "all" || ENV["DB"] == "postgres"
2016-01-23 21:05:43 +05:30
2018-05-09 12:38:34 +05:30
gem 'rugged', '~> 0.27'
2018-03-18 12:27:51 +05:30
gem 'grape-route-helpers', '~> 2.1'