diff options
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ruby.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 2bd0e09838..fd51004885 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6097,3 +6097,24 @@ using a strict syntax definition and supporting several common extensions. (home-page "http://github.com/yob/pdf-reader") (license #f))) +(define-public ruby-cane + (package + (name "ruby-cane") + (version "2.6.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "cane" version)) + (sha256 + (base32 + "176x9g8ax9xky4303sf0xzf6ya62mdrm4bfrdj0hhy45x43v03x1")))) + (build-system ruby-build-system) + (propagated-inputs + `(("ruby-parallel" ,ruby-parallel) + ("bundler" ,bundler))) + (synopsis + "Fails your build if code quality thresholds are not met") + (description + "Fails your build if code quality thresholds are not met") + (home-page "http://github.com/square/cane") + (license license:asl2.0))) |