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

27 lines
666 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"
2020-01-01 14:36:02 +05:30
gem 'bullet', '~> 6.0.2', require: !!ENV['ENABLE_BULLET']
2019-12-21 21:33:11 +05:30
gem 'pry-byebug', '~> 3.5.1', platform: :mri
gem 'pry-rails', '~> 0.3.4'
2020-01-01 14:36:02 +05:30
@@ -369,14 +369,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
2020-01-01 14:36:02 +05:30
gem 'fuubar', '~> 2.2.0'
gem 'rspec-retry', '~> 0.6.1'
gem 'rspec_profiling', '~> 0.0.5'