mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: ruby-shoulda: Update to 4.0.0.
* gnu/packages/ruby.scm (ruby-shoulda): Update to 4.0.0. [arguments]: Add relax-requirements phase. [propagated-inputs]: Replace ruby-shoulda-matchers-2 with ruby-shoulda-matchers. (ruby-shoulda-matchers-2): Delete variable.
This commit is contained in:
parent
7800103c81
commit
208cf6916e
1 changed files with 12 additions and 15 deletions
|
@ -10136,28 +10136,17 @@ (define-public ruby-shoulda-matchers
|
||||||
(home-page "https://github.com/thoughtbot/shoulda-matchers")
|
(home-page "https://github.com/thoughtbot/shoulda-matchers")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-shoulda-matchers-2
|
|
||||||
(package
|
|
||||||
(inherit ruby-shoulda-matchers)
|
|
||||||
(version "2.8.0")
|
|
||||||
(source (origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (rubygems-uri "shoulda-matchers" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0d3ryqcsk1n9y35bx5wxnqbgw4m8b3c79isazdjnnbg8crdp72d0"))))))
|
|
||||||
|
|
||||||
(define-public ruby-shoulda
|
(define-public ruby-shoulda
|
||||||
(package
|
(package
|
||||||
(name "ruby-shoulda")
|
(name "ruby-shoulda")
|
||||||
(version "3.5.0")
|
(version "4.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (rubygems-uri "shoulda" version))
|
(uri (rubygems-uri "shoulda" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0csmf15a7mcinfq54lfa4arp0f4b2jmwva55m0p94hdf3pxnjymy"))))
|
"02lww34kn1g6lidp4rx4rs6bqvirrzxlfw1y2wm11aif8f622xz6"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -10165,9 +10154,17 @@ (define-public ruby-shoulda
|
||||||
(replace 'check
|
(replace 'check
|
||||||
;; Don't run tests to avoid circular dependence with rails. Instead
|
;; Don't run tests to avoid circular dependence with rails. Instead
|
||||||
;; just import the library to test.
|
;; just import the library to test.
|
||||||
(lambda _ (invoke "ruby" "-Ilib" "-r" "shoulda"))))))
|
(lambda _ (invoke "ruby" "-Ilib" "-r" "shoulda")))
|
||||||
|
(add-after 'extract-gemspec 'relax-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "shoulda.gemspec"
|
||||||
|
;; An older version of shoulda-matchers (4.0) is used, out of
|
||||||
|
;; little maintenance rather than because of an real
|
||||||
|
;; incompatibility (see:
|
||||||
|
;; https://github.com/thoughtbot/shoulda/issues/275).
|
||||||
|
((", \\[\"~> 4.0\"]") "")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list ruby-shoulda-context ruby-shoulda-matchers-2))
|
(list ruby-shoulda-context ruby-shoulda-matchers))
|
||||||
(synopsis "Context framework and matchers for testing")
|
(synopsis "Context framework and matchers for testing")
|
||||||
(description
|
(description
|
||||||
"@code{shoulda} is a meta-package combining @code{shoulda-context} and
|
"@code{shoulda} is a meta-package combining @code{shoulda-context} and
|
||||||
|
|
Loading…
Reference in a new issue