diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:46:53 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 18:25:19 +0000 |
commit | 34aa8779030b936eed50fb736c008b58081f22ee (patch) | |
tree | d98549f7ebf002f936e8dd43f8ed2102ecec325a /gnu/packages | |
parent | 6abbf4202d95a597f0dc0982f2cee4431d2f4c42 (diff) | |
download | guix-34aa8779030b936eed50fb736c008b58081f22ee.tar guix-34aa8779030b936eed50fb736c008b58081f22ee.tar.gz |
gnu: Add ruby-cane.
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))) |