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

24 lines
641 B
Diff
Raw Normal View History

2017-08-20 00:17:22 +05:30
--- a/Gemfile
+++ b/Gemfile
2019-05-18 01:04:41 +05:30
@@ -307,7 +307,7 @@ group :tracing do
gem 'jaeger-client', '~> 0.10.0'
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-05-18 01:04:41 +05:30
gem 'bootsnap', '~> 1.4'
2019-02-15 18:28:22 +05:30
gem 'bullet', '~> 5.5', require: !!ENV['ENABLE_BULLET']
gem 'pry-byebug', '~> 3.5', '>= 3.5.1', platform: :mri
2019-05-18 01:04:41 +05:30
@@ -359,9 +359,9 @@ group :development, :test do
2019-02-15 18:28:22 +05:30
gem 'simple_po_parser', '~> 1.1', '>= 1.1.2', require: false
2018-05-09 12:38:34 +05:30
gem 'timecop', '~> 0.8.0'
2017-09-10 18:21:32 +05:30
-end
2018-03-18 12:27:51 +05:30
+#end
2017-09-10 18:21:32 +05:30
-group :test do
2018-03-18 12:27:51 +05:30
+#group :test do
2019-02-15 18:28:22 +05:30
gem 'shoulda-matchers', '~> 3.1', '>= 3.1.2', require: false
gem 'email_spec', '~> 2.2'
gem 'json-schema', '~> 2.8'