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

22 lines
482 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
-group :development, :test do
+if ENV["INCLUDE_TEST_DEPENDS"] == "true"
2020-02-28 12:49:51 +05:30
gem 'pry-byebug', '~> 3.5', '>= 3.5.1', platform: :mri
gem 'pry-rails', '~> 0.3.4'
2020-02-28 12:49:51 +05:30
@@ -359,9 +359,6 @@
gem 'simple_po_parser', '~> 1.1', '>= 1.1.2', require: false
gem 'timecop', '~> 0.8.0'
-end
-
-group :test do
2020-02-24 20:28:28 +05:30
gem 'fuubar', '~> 2.2'
2020-01-01 14:36:02 +05:30
gem 'rspec-retry', '~> 0.6.1'
gem 'rspec_profiling', '~> 0.0.5'