mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add ruby-activestorage.
* gnu/packages/rails.scm (ruby-activestorage): New variable.
This commit is contained in:
parent
554bf4f606
commit
078849455e
1 changed files with 26 additions and 0 deletions
|
@ -306,6 +306,32 @@ (define-public ruby-activejob
|
||||||
(home-page "https://rubyonrails.org/")
|
(home-page "https://rubyonrails.org/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-activestorage
|
||||||
|
(package
|
||||||
|
(name "ruby-activestorage")
|
||||||
|
(version "5.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "activestorage" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0c72837098sw384vk6dmrb2p7q3wx4swnibk6sw9dp4hn1vc4p31"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(;; No included tests
|
||||||
|
#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-actionpack" ,ruby-actionpack)
|
||||||
|
("ruby-activerecord" ,ruby-activerecord)
|
||||||
|
("ruby-marcel" ,ruby-marcel)))
|
||||||
|
(synopsis "Integrate file storage services in to Rails applications")
|
||||||
|
(description
|
||||||
|
"ActiveStorage integrates file storage services with Rails applications,
|
||||||
|
allowing files to be attached to ActiveRecord models..")
|
||||||
|
(home-page "https://rubyonrails.org/")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-actionmailer
|
(define-public ruby-actionmailer
|
||||||
(package
|
(package
|
||||||
(name "ruby-actionmailer")
|
(name "ruby-actionmailer")
|
||||||
|
|
Loading…
Reference in a new issue