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

24 lines
586 B
Diff
Raw Normal View History

2017-08-20 00:17:22 +05:30
--- a/Gemfile
+++ b/Gemfile
2019-10-03 20:38:59 +05:30
@@ -313,7 +313,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-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-10-03 20:38:59 +05:30
@@ -367,9 +367,9 @@
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
gem 'shoulda-matchers', '~> 4.0', '>=4.0.1', require: false
2019-02-15 18:28:22 +05:30
gem 'email_spec', '~> 2.2'
gem 'json-schema', '~> 2.8'