gnu: ruby-actionmailer: Update to 7.0.4.3.
* gnu/packages/rails.scm (ruby-actionmailer): Update to 7.0.4.3. [source]: Use ruby-rail-monorepo. [arguments]: Add #:phases argument. [propagated-inputs]: Add ruby-net-imap, ruby-net-pop and ruby-net-smtp.
This commit is contained in:
parent
bfb935ff3c
commit
bae30f5fdd
1 changed files with 27 additions and 25 deletions
|
@ -704,32 +704,34 @@ allowing files to be attached to ActiveRecord models.")
|
||||||
|
|
||||||
(define-public ruby-actionmailer
|
(define-public ruby-actionmailer
|
||||||
(package
|
(package
|
||||||
(name "ruby-actionmailer")
|
(name "ruby-actionmailer")
|
||||||
(version "6.1.3")
|
(version %ruby-rails-version)
|
||||||
(source
|
(source ruby-rails-monorepo)
|
||||||
(origin
|
(build-system ruby-build-system)
|
||||||
(method url-fetch)
|
(arguments
|
||||||
(uri (rubygems-uri "actionmailer" version))
|
(list
|
||||||
(sha256
|
#:tests? #f ;avoid a cycle with ruby-rails
|
||||||
(base32
|
#:phases
|
||||||
"0lic4mc6wqi3p9ipdqljl64vd9ndabm0k8hww0m07sfdhwsl5ba9"))))
|
#~(modify-phases %standard-phases
|
||||||
(build-system ruby-build-system)
|
(add-after 'extract-gemspec 'chdir
|
||||||
(arguments
|
(lambda _
|
||||||
'(;; No included tests
|
(chdir "actionmailer"))))))
|
||||||
#:tests? #f))
|
(propagated-inputs
|
||||||
(propagated-inputs
|
(list ruby-actionpack
|
||||||
(list ruby-actionpack
|
ruby-actionview
|
||||||
ruby-actionview
|
ruby-activejob
|
||||||
ruby-activejob
|
ruby-activesupport
|
||||||
ruby-activesupport
|
ruby-mail
|
||||||
ruby-mail
|
ruby-net-imap
|
||||||
ruby-rails-dom-testing))
|
ruby-net-pop
|
||||||
(synopsis "Work with emails using the controller/view pattern")
|
ruby-net-smtp
|
||||||
(description
|
ruby-rails-dom-testing))
|
||||||
"Compose, deliver, receive, and test emails using the controller/view
|
(synopsis "Work with emails using the controller/view pattern")
|
||||||
|
(description
|
||||||
|
"Compose, deliver, receive, and test emails using the controller/view
|
||||||
pattern. Including support for multipart email and attachments.")
|
pattern. Including support for multipart email and attachments.")
|
||||||
(home-page "https://rubyonrails.org/")
|
(home-page "https://rubyonrails.org/")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-marcel
|
(define-public ruby-marcel
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue