mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ruby-rubocop-rspec-minimal: Avoid ruby-danger dependency.
* gnu/packages/ruby.scm (ruby-rubocop-rspec-minimal): [arguments]<#:phases>: Add phase 'relax-requirements. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
17bdacd56b
commit
00b037291f
1 changed files with 8 additions and 1 deletions
|
@ -2137,7 +2137,14 @@ enforcing & linting tool for @code{factory_bot} files.")
|
|||
(base32
|
||||
"1w9whadx60kv4vlbnk77b5yyhhfcg717r9cr334zqznqr1bqr8mh"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments (list #:tests? #f)) ;avoid extra dependencies
|
||||
(arguments
|
||||
(list #:tests? #f ;avoid extra dependencies
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'relax-requirements
|
||||
(lambda _
|
||||
(substitute* "Gemfile"
|
||||
(("gem 'danger'.*") "")))))))
|
||||
(propagated-inputs (list ruby-rubocop-factory-bot))
|
||||
(synopsis "Code style checking for RSpec files")
|
||||
(description "This package provides a plugin for the RuboCop code style
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue