gnu: Add ruby-rubocop-packaging.

* gnu/packages/ruby.scm (ruby-rubocop-packaging): New variable.
This commit is contained in:
Christopher Baines 2023-07-03 10:00:56 +01:00
parent a6cc172aa5
commit 7c94bfddb3
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -1942,6 +1942,37 @@ (define-public ruby-rubocop-rspec
ruby-rubocop-ast
ruby-rubocop-capybara))))
(define-public ruby-rubocop-packaging
(package
(name "ruby-rubocop-packaging")
(version "0.5.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/utkarsh2102/rubocop-packaging")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"08jsfp42z0aj32002z2hz8vkmza0jvnrqk9rk2v0xb8qdxkgbx3l"))))
(build-system ruby-build-system)
(arguments
(list #:test-target "spec"))
(propagated-inputs
(list ruby-rubocop))
(native-inputs
(list ruby-rspec
ruby-yard
ruby-bump))
(synopsis
"Collection of RuboCop checks for downstream compatibility issues")
(description
"This package provides a collection of RuboCop cops to check for
downstream compatibility issues in the Ruby code.")
(home-page "https://github.com/utkarsh2102/rubocop-packaging")
(license license:expat)))
(define-public ruby-rubocop-performance
(package
(name "ruby-rubocop-performance")