diff options
-rw-r--r-- | community/ruby-rdiscount/fix-rakefile.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/community/ruby-rdiscount/fix-rakefile.patch b/community/ruby-rdiscount/fix-rakefile.patch new file mode 100644 index 0000000000..9a0effd84c --- /dev/null +++ b/community/ruby-rdiscount/fix-rakefile.patch @@ -0,0 +1,12 @@ +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] + |