resque-async_deliver 1.3.1
This gem makes it possible to send mails asynchronously using Resque by simply rewriting `SomeMailer.some_mail(ar_resource, 1234).deliver` to `SomeMailer.async_deliver.some_mail(ar_resource, 1234)`. Using ActiveRecord objects as arguments to mailers is still possible. This is achieved by storing the class name and the record id as arguments in the Resque queue which will be transformed back to records by the mailer job and passed along to the mailer.
Gemfile:
=
install:
=
Runtime Dependencies (2):
actionmailer
< 5, >= 3
resque
~> 1.0
Development Dependencies (1):
rspec
>= 3.0.0.beta1