diff options
Diffstat (limited to 'gnu')
-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))) |