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

24 lines
564 B
Diff
Raw Normal View History

2017-08-20 00:17:22 +05:30
--- a/Gemfile
+++ b/Gemfile
2018-12-13 14:23:24 +05:30
@@ -303,7 +303,7 @@
2017-09-10 18:21:32 +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"
2018-11-18 11:20:06 +05:30
gem 'bootsnap', '~> 1.3'
2017-09-10 18:21:32 +05:30
gem 'bullet', '~> 5.5.0', require: !!ENV['ENABLE_BULLET']
gem 'pry-byebug', '~> 3.4.1', platform: :mri
2018-12-13 14:23:24 +05:30
@@ -355,9 +355,9 @@
2018-03-18 12:27:51 +05:30
gem 'simple_po_parser', '~> 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
2017-09-10 18:21:32 +05:30
gem 'shoulda-matchers', '~> 3.1.2', require: false
2018-11-08 20:39:57 +05:30
gem 'email_spec', '~> 2.2.0'
2018-03-18 12:27:51 +05:30
gem 'json-schema', '~> 2.8.0'