From 596a48d092b6450eba7a965ee23f1cfb6309ba4b Mon Sep 17 00:00:00 2001 From: Keerthi Kota Date: Mon, 11 Mar 2019 18:51:49 +0530 Subject: [PATCH] gnu: Add ruby-bounce. * gnu/packages/ruby.scm (ruby-bounce): New variable. --- gnu/packages/ruby.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e6e0f09c2..9a4361548 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8632,3 +8632,31 @@ then check out http://127.0.0.1:1080 to see the mail.") (license license:expat))) +(define-public ruby-bounce + (package + (name "ruby-bounce") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "bounce" version)) + (sha256 + (base32 + "1rlafvk1h5pb9k16lslqrfmfv6rl0hrskkhlliifd9dbm9s54cqg")))) + (build-system ruby-build-system) + (arguments + '(;; No included tests + #:tests? #f)) + + (propagated-inputs + `(("ruby-activerecord" ,ruby-activerecord))) + (synopsis + "Bounce will save and return an active record object. This results in a nice refactor of update and create actions in your controllers when used with respond_with.") + (description "bounce will save and return an active record object. This results in a nice refactor of update and create actions in your controllers when used with respond_with.") + (home-page + "http://github.com/johnnytommy/bounce") + (license license:expat))) + + + + -- 2.11.0