mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: Add ruby-rubocop-packaging.
* gnu/packages/ruby.scm (ruby-rubocop-packaging): New variable.
This commit is contained in:
parent
a6cc172aa5
commit
7c94bfddb3
1 changed files with 31 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue