diff options
| -rw-r--r-- | gnu/packages/ruby.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 19ee19a775b..1b72539dc41 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2115,7 +2115,11 @@ enforcing & linting tool.") (define-public ruby-rubocop-rspec (package (inherit ruby-rubocop-rspec-minimal) - (arguments '(#:test-target "spec")) + (arguments + (substitute-keyword-arguments + (package-arguments ruby-rubocop-rspec-minimal) + ((#:tests? _ #f) #t) + ((#:test-target _ "test") "spec"))) (native-inputs (list ruby-bump ruby-rack @@ -2127,7 +2131,8 @@ enforcing & linting tool.") (propagated-inputs (list ruby-rubocop ruby-rubocop-ast - ruby-rubocop-capybara)))) + ruby-rubocop-capybara + ruby-rubocop-factory-bot)))) (define-public ruby-rubocop-packaging (package |
