debian-mirror-gitlab/debian/patches/0110-make-test-dependencies-conditional.patch

27 lines
687 B
Diff
Raw Normal View History

2017-08-20 00:17:22 +05:30
--- a/Gemfile
+++ b/Gemfile
2019-12-26 22:33:15 +05:30
@@ -329,7 +329,7 @@
2019-07-31 23:45:35 +05:30
gem 'raindrops', '~> 0.18'
2017-08-20 00:17:22 +05:30
end
2017-09-10 18:21:32 +05:30
-group :development, :test do
2017-08-20 00:17:22 +05:30
+if ENV["INCLUDE_TEST_DEPENDS"] == "true"
2019-12-21 21:33:11 +05:30
gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET']
gem 'pry-byebug', '~> 3.5.1', platform: :mri
gem 'pry-rails', '~> 0.3.4'
2019-12-26 22:33:15 +05:30
@@ -378,14 +378,10 @@
2019-12-21 21:33:11 +05:30
gem 'simple_po_parser', '~> 1.1.2', require: false
gem 'timecop', '~> 0.8.0'
-end
2019-12-26 22:33:15 +05:30
# Gems required in omnibus-gitlab pipeline
-group :development, :test, :omnibus do
gem 'license_finder', '~> 5.4', require: false
-end
-group :test do
2019-12-21 21:33:11 +05:30
gem 'shoulda-matchers', '~> 4.0.1', require: false
gem 'email_spec', '~> 2.2.0'
gem 'json-schema', '~> 2.8.0'