diff options
author | Ludovic Courtès <[email protected]> | 2016-12-09 15:39:13 +0100 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2016-12-09 15:39:13 +0100 |
commit | d99ee3d923b822828394167b51a1178ec0996a27 (patch) | |
tree | c9828be7008c901804b456853f0fd389a9d84f93 | |
parent | 76bbce6af2baed0c2fa7dddd43ecc2ffe6482c41 (diff) |
gnu: ruby-sdoc: Really relax minitest version requirement.
* gnu/packages/ruby.scm (ruby-sdoc)[arguments]: Adjust pattern in
'relax-minitest-requirement'.
-rw-r--r-- | gnu/packages/ruby.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6471f2ff45..c57b09ec2d 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015 Pjotr Prins <[email protected]> -;;; Copyright © 2014, 2015 Ludovic Courtès <[email protected]> +;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <[email protected]> ;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]> ;;; Copyright © 2014, 2015 David Thompson <[email protected]> ;;; Copyright © 2015 Ricardo Wurmus <[email protected]> @@ -2215,8 +2215,8 @@ current line in an external editor.") (add-after 'build 'relax-minitest-requirement (lambda _ (substitute* "sdoc.gemspec" - (("<minitest>, \\[\"~> 4\\.0\"\\]") - "<minitest>, [\">= 4.0\"]")) + (("<minitest>\\.freeze, \\[\"~> 4\\.0\"\\]") + "<minitest>.freeze, [\">= 4.0\"]")) #t))))) (propagated-inputs `(("ruby-json" ,ruby-json))) |