mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add ruby-rubocop-rake-minimal.
* gnu/packages/ruby.scm (ruby-rubocop-rake-minimal): New variable.
This commit is contained in:
parent
58b438a752
commit
be99981d62
1 changed files with 20 additions and 0 deletions
|
@ -1537,6 +1537,26 @@ (define-public ruby-typhoeus
|
||||||
(home-page "https://github.com/typhoeus/typhoeus")
|
(home-page "https://github.com/typhoeus/typhoeus")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define ruby-rubocop-rake-minimal
|
||||||
|
(package
|
||||||
|
(name "ruby-rubocop-rake")
|
||||||
|
(version "0.6.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/rubocop/rubocop-rake")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1r53szwglikbir1fvpz4i51p915khrrkl6rp61zcx3dcrclkr3ld"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments (list #:tests? #f)) ;avoid extra dependencies
|
||||||
|
(synopsis "RuboCop plugin for Rake")
|
||||||
|
(description "This package provides a RuboCop plugin for Rake.")
|
||||||
|
(home-page "https://github.com/rubocop/rubocop-rake")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-rubocop-rspec
|
(define-public ruby-rubocop-rspec
|
||||||
(package
|
(package
|
||||||
(name "ruby-rubocop-rspec")
|
(name "ruby-rubocop-rspec")
|
||||||
|
|
Loading…
Reference in a new issue