1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Relax gem dependencies
as Debian unstable has already newer version of them...
Author: Cédric Boutillier <boutil@debian.org>
Last-Update: 2019-02-06
Forwarded: not-needed
--- a/ronn-ng.gemspec
+++ b/ronn-ng.gemspec
@@ -59,9 +59,9 @@
s.executables = ['ronn']
s.extra_rdoc_files = %w[LICENSE.txt AUTHORS]
- s.add_dependency 'kramdown', ['~> 2', '>= 2.1']
- s.add_dependency 'kramdown-parser-gfm', ['~> 1', '>= 1.0.1']
- s.add_dependency 'mustache', ['~> 1']
+ s.add_dependency 'kramdown', ['>= 2.1']
+ s.add_dependency 'kramdown-parser-gfm', ['>= 1.0.1']
+ s.add_dependency 'mustache', ['>= 1']
# nokogiri <= 1.14.2 mishandle tag names with ":" in them (see #102)
s.add_dependency 'nokogiri', ['~> 1', '>= 1.14.3']
# rack < 2.2.3 have security vulns
|