diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:43:51 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-18 18:25:19 +0000 |
commit | d8e256d19689a33b0e41a0e099dd32cc638886e3 (patch) | |
tree | 0d1af321b5e34f73ce97522ea5540842ca7d8978 | |
parent | c72503aff65ce13c76a20390bcdae79f42930116 (diff) | |
download | guix-d8e256d19689a33b0e41a0e099dd32cc638886e3.tar guix-d8e256d19689a33b0e41a0e099dd32cc638886e3.tar.gz |
gnu: Add ruby-truthy.
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index f098eb4b0c..7cc1115cf4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5613,3 +5613,26 @@ percentage, bars of various formats, elapsed time and estimated time remaining. "A Ruby implementation of the Coveralls API.") (home-page "https://coveralls.io") (license license:expat))) + +(define-public ruby-truthy +(package + (name "ruby-truthy") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "truthy" version)) + (sha256 + (base32 + "19silgd65j3qwfk5w891p9wcmzdmi9ddm2kg5zbvvqn2h9lkfzmd")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ; Files required for testing are not in gem, and homepage + ; has disappeared. + (propagated-inputs `(("ruby-hoe" ,ruby-hoe))) + (synopsis + "Easily get truthiness values of Ruby objects") + (description + "Easily get truthiness values of Ruby objects") + (home-page "https://rubygems.org/gems/truthy") + (license #f))) |