1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/community/ruby-rdiscount/fix-rakefile.patch
2017-12-26 19:25:11 +01:00

12 lines
296 B
Diff

Ruby 2.5+ doesn't support option -rubygems anymore.
--- a/Rakefile
+++ b/Rakefile
@@ -53,7 +53,6 @@
require 'rake/testtask'
Rake::TestTask.new('test:unit') do |t|
t.test_files = FileList['test/*_test.rb']
- t.ruby_opts += ['-rubygems'] if defined? Gem
end
task 'test:unit' => [:build]