diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-08-30 09:22:50 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-09-06 09:24:17 -0400 |
commit | 5ff89a1bd218d7f1030e5ca776c10017c2d90a59 (patch) | |
tree | 7735cd622c0b154c335a965d70a6e7c87b6758dc /gnu | |
parent | c99e2247078468e8755bd29dc9329b889dec910a (diff) | |
download | guix-5ff89a1bd218d7f1030e5ca776c10017c2d90a59.tar.gz |
gnu: Add ruby-activesupport.
* gnu/packages/ruby.scm (ruby-activesupport): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 3b4dc6d8e3..516708e5cc 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -980,3 +980,30 @@ aware transformations between times in different time zones.") a native C extension.") (home-page "http://json-jruby.rubyforge.org/") (license (list license:ruby license:gpl2)))) ; GPL2 only + +(define-public ruby-activesupport + (package + (name "ruby-activesupport") + (version "4.2.4") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "activesupport" version)) + (sha256 + (base32 + "19n38rj6r1gyxgka18qvcxyla0fwan8a5p3ghq0pp8aj93sbmr6f")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) ; no tests + (propagated-inputs + `(("ruby-i18n" ,ruby-i18n) + ("ruby-json" ,ruby-json) + ("ruby-minitest" ,ruby-minitest) + ("ruby-thread-safe" ,ruby-thread-safe) + ("ruby-tzinfo" ,ruby-tzinfo))) + (synopsis "Ruby on Rails utility library") + (description "ActiveSupport is a toolkit of support libraries and Ruby +core extensions extracted from the Rails framework. It includes support for +multibyte strings, internationalization, time zones, and testing.") + (home-page "http://www.rubyonrails.org") + (license license:expat))) |