guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

10/229: gnu: Add ruby-rubocop-rake-minimal.


From: guix-commits
Subject: 10/229: gnu: Add ruby-rubocop-rake-minimal.
Date: Tue, 28 Mar 2023 22:28:49 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit be99981d62fec43814545273bb9a82617dd44568
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Mar 1 19:55:28 2023 -0500

    gnu: Add ruby-rubocop-rake-minimal.
    
    * gnu/packages/ruby.scm (ruby-rubocop-rake-minimal): New variable.
---
 gnu/packages/ruby.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 4615c78c67..bf8b5e19d8 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -1537,6 +1537,26 @@ logic.")
     (home-page "https://github.com/typhoeus/typhoeus";)
     (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
   (package
     (name "ruby-rubocop-rspec")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]