diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:52:13 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:46:23 +0000 |
commit | eeb5a642318eb715c5ade6e47d4f26fb80410f8c (patch) | |
tree | cae0c7cbb64094c8ad96dd3e75b784efa0202441 | |
parent | 7c0641a646068382b69e2107c51de22959a4de9d (diff) | |
download | gnu-guix-eeb5a642318eb715c5ade6e47d4f26fb80410f8c.tar gnu-guix-eeb5a642318eb715c5ade6e47d4f26fb80410f8c.tar.gz |
gnu: Add ruby-actionmailer.
-rw-r--r-- | gnu/packages/rails.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/rails.scm b/gnu/packages/rails.scm index 9d9f5ea70a..babc80289d 100644 --- a/gnu/packages/rails.scm +++ b/gnu/packages/rails.scm @@ -302,3 +302,31 @@ API.") "Declare job classes that can be run by a variety of queueing backends.") (home-page "http://www.rubyonrails.org") (license license:expat))) + +(define-public ruby-actionmailer + (package + (name "ruby-actionmailer") + (version "5.2.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "actionmailer" version)) + (sha256 + (base32 + "0h1nqg47jap0wzp0dhlnck4xjijfvdfw49aipjp8y2ihdpvyqrx6")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ; tests not included + (propagated-inputs + `(("ruby-actionpack" ,ruby-actionpack) + ("ruby-actionview" ,ruby-actionview) + ("ruby-activejob" ,ruby-activejob) + ("ruby-mail" ,ruby-mail) + ("ruby-rails-dom-testing" + ,ruby-rails-dom-testing))) + (synopsis + "Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.") + (description + "Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.") + (home-page "http://www.rubyonrails.org") + (license license:expat))) |