gnu: Add ruby-mercenary.

* gnu/packages/ruby.scm (ruby-mercenary): New variable.
This commit is contained in:
Julien Lepiller 2018-08-26 17:28:10 +02:00
parent f8ae2ee528
commit f1ec4d7611
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 20 additions and 0 deletions

View File

@ -5788,3 +5788,23 @@ indentation will probably be an issue and hence this gem.")
(description "The SafeYAML gem provides an alternative implementation of (description "The SafeYAML gem provides an alternative implementation of
YAML.load suitable for accepting user input in Ruby applications.") YAML.load suitable for accepting user input in Ruby applications.")
(license license:expat))) (license license:expat)))
(define-public ruby-mercenary
(package
(name "ruby-mercenary")
(version "0.3.6")
(source (origin
(method url-fetch)
(uri (rubygems-uri "mercenary" version))
(sha256
(base32
"10la0xw82dh5mqab8bl0dk21zld63cqxb1g16fk8cb39ylc4n21a"))))
(build-system ruby-build-system)
(arguments `(#:test-target "spec"))
(native-inputs
`(("bundler" ,bundler)))
(home-page "https://github.com/jekyll/mercenary")
(synopsis "Command-line apps library in Ruby")
(description "Mercenary is a lightweight and flexible library for writing
command-line apps in Ruby.")
(license license:expat)))