1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Fix missing dependency on rake
This was previously fixed in debian/pathname2.gemspec, but that didn't allow
gem2deb-test-runner to properly detect this in the source. Patch the
upstream spec instead of creating duplicate files in the test tree, as this
should go upstream anyway.
Author: Steve Langasek <steve.langasek@ubuntu.com>
Bug-Debian: https://bugs.debian.org/871718
Last-Update: 2017-08-10
--- ruby-pathname2-1.8.0.orig/pathname2.gemspec
+++ ruby-pathname2-1.8.0/pathname2.gemspec
@@ -1,4 +1,5 @@
require 'rubygems'
+require 'rake'
Gem::Specification.new do |spec|
spec.name = 'pathname2'
|