Package: ruby-rouge / 3.21.0-1

0004-Disable-all-non-essential-gems.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
From: Daniel Leidert <daniel.leidert@wgdd.de>
Date: Fri, 3 Apr 2020 02:46:16 +0200
Subject: Disable all non essential gems

The tests are set up via bundler. So patch out all non-essential gems.
---
 Gemfile | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Gemfile b/Gemfile
index 12095db..fc2ee41 100644
--- a/Gemfile
+++ b/Gemfile
@@ -10,25 +10,25 @@ gem 'minitest', '>= 5.0'
 gem 'minitest-power_assert'
 
 gem 'parallel', '~> 1.13.0' if RUBY_VERSION < '2.2.0'
-gem 'rubocop', '~> 0.49.1'
+#gem 'rubocop', '~> 0.49.1'
 
 # don't try to install redcarpet under jruby
-gem 'redcarpet', :platforms => :ruby
+#gem 'redcarpet', :platforms => :ruby
 
 # Profiling
 if RUBY_VERSION >= '2.3.0'
-  gem 'memory_profiler', :require => false
+#  gem 'memory_profiler', :require => false
 end
 
 # Needed for a Rake task
-gem 'git'
-gem 'yard'
+#gem 'git'
+#gem 'yard'
 
 group :development do
-  gem 'pry'
+  #gem 'pry'
 
   # docs
-  gem 'github-markup'
+  #gem 'github-markup'
 
   # for visual tests
   if RUBY_VERSION < '2.2.0'
@@ -36,5 +36,5 @@ group :development do
   else
     gem 'sinatra'
   end
-  gem 'shotgun'
+  #gem 'shotgun'
 end