diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-07-19 22:38:29 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-08-10 15:36:33 +1000 |
commit | 2af45e5025300f97f4451f75f40ec6a0e34a797f (patch) | |
tree | 3012fceeb90dc3845c437f4f2232e346d73bd615 | |
parent | 3840373b399d1d6877a414a44c28d1bb12c0cb9e (diff) | |
download | guix-2af45e5025300f97f4451f75f40ec6a0e34a797f.tar guix-2af45e5025300f97f4451f75f40ec6a0e34a797f.tar.gz |
gnu: ruby-activesupport: Update to 5.0.0.
* gnu/packages/ruby.scm (ruby-activesupport): Update to 5.0.0.
[arguments]: Include the library as a test.
[propagated-inputs]: Add ruby-concurrent. Remove ruby-thread-safe,
ruby-json.
-rw-r--r-- | gnu/packages/ruby.scm | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 21ca2f2c7c..fed46ab748 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2536,22 +2536,26 @@ you about the changes.") (define-public ruby-activesupport (package (name "ruby-activesupport") - (version "4.2.4") + (version "5.0.0") (source (origin (method url-fetch) (uri (rubygems-uri "activesupport" version)) (sha256 (base32 - "19n38rj6r1gyxgka18qvcxyla0fwan8a5p3ghq0pp8aj93sbmr6f")))) + "0k7zhnz0aw1ym8phs10r85f91ja45vsd058fm9v0h2k0igw12cpf")))) (build-system ruby-build-system) (arguments - '(#:tests? #f)) ; no tests + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + ;; There is no tests, instead attempt to load the library. + (zero? (system* "ruby" "-Ilib" "-r" "active_support"))))))) (propagated-inputs - `(("ruby-i18n" ,ruby-i18n) - ("ruby-json" ,ruby-json) + `(("ruby-concurrent" ,ruby-concurrent) + ("ruby-i18n" ,ruby-i18n) ("ruby-minitest" ,ruby-minitest) - ("ruby-thread-safe" ,ruby-thread-safe) ("ruby-tzinfo" ,ruby-tzinfo) ("ruby-tzinfo-data" ,ruby-tzinfo-data))) (synopsis "Ruby on Rails utility library") |