File: remove_rubygems_from_spec_runner.patch

package info (click to toggle)
ruby-minitest-shared-description 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 116 kB
  • sloc: ruby: 98; makefile: 3; sh: 2
file content (19 lines) | stat: -rw-r--r-- 626 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Remove -rubygems from spec runner for ruby 2.5 compatibility
Author: Jeremy Evans <code@jeremyevans.net>
Last-Update: 2017-11-06
Bug-Debian: https://bugs.debian.org/893823
Origin: upstream, https://github.com/jeremyevans/minitest-shared_description/commit/c59037f6ec

diff --git a/Rakefile b/Rakefile
index fc8db7e..eb18026 100644
--- a/Rakefile
+++ b/Rakefile
@@ -12,7 +12,7 @@ end
 
 desc "Run specs"
 task :spec do
-  sh %{#{FileUtils::RUBY} -I lib -rubygems ./spec/minitest-shared_description_spec.rb}
+  sh %{#{FileUtils::RUBY} -I lib ./spec/minitest-shared_description_spec.rb}
 end
 
 task :default=>:spec