diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:55:07 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:46:23 +0000 |
commit | cad12c318047891af9f654373cc5a0cc7e9d04a9 (patch) | |
tree | 4b62dac9bc8a824f3038a1ffb456e36181a5ac24 | |
parent | b231821e532722bc36af382e7a1a61bc9dc71f4b (diff) | |
download | gnu-guix-cad12c318047891af9f654373cc5a0cc7e9d04a9.tar gnu-guix-cad12c318047891af9f654373cc5a0cc7e9d04a9.tar.gz |
gnu: Add ruby-globalid.
-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 7d097f44f5..f839337d2f 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7844,3 +7844,26 @@ but it can function as a stand-alone templating engine.") (description "New IO for Ruby") (home-page "https://github.com/celluloid/nio4r") (license license:expat))) + +(define-public ruby-globalid + (package + (name "ruby-globalid") + (version "0.3.6") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "globalid" version)) + (sha256 + (base32 + "145xrpsfx1qqjy33r6qa588wb16dvdhxzj2aysh755vhg6hgm291")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) + (propagated-inputs + `(("ruby-activesupport" ,ruby-activesupport))) + (synopsis + "URIs for your models makes it easy to pass references around.") + (description + "URIs for your models makes it easy to pass references around.") + (home-page "http://www.rubyonrails.org") + (license license:expat))) |