mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-11 14:26:13 +01:00
gnu: Add ruby-roda.
* gnu/packages/ruby.scm (ruby-roda): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
parent
cbf02f10d7
commit
4009c98e5a
1 changed files with 21 additions and 0 deletions
|
@ -12666,3 +12666,24 @@ into Money objects.")
|
||||||
(description "This package provides a gem that calculates the exchange rate
|
(description "This package provides a gem that calculates the exchange rate
|
||||||
using published rates from open-exchange-rates. Compatible with the money gem.")
|
using published rates from open-exchange-rates. Compatible with the money gem.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-roda
|
||||||
|
(package
|
||||||
|
(name "ruby-roda")
|
||||||
|
(version "3.57.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "roda" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0nkfxnbcfnriywvx9kpamp850cwjmqv8ssajc95d0aiyjr4kdrfy"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
;; No rakefile
|
||||||
|
`(#:tests? #f))
|
||||||
|
(propagated-inputs (list ruby-rack))
|
||||||
|
(home-page "http://roda.jeremyevans.net")
|
||||||
|
(synopsis "Routing Tree Web Toolkit")
|
||||||
|
(description "Roda is a routing tree web toolkit, designed for building fast
|
||||||
|
and maintainable web applications in ruby.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue