Loads the resource record and sends the email.
It uses `orm_adapter` API to fetch the record in order to enforce compatibility among diferent ORMs.
# File lib/devise/async/backend/base.rb, line 13 def perform(method, resource_class, resource_id, *args) resource = resource_class.constantize.to_adapter.get!(resource_id) args[-1] = args.last.symbolize_keys if args.last.is_a?(Hash) mailer_class(resource).send(method, resource, *args).deliver end
Generated with the Darkfish Rdoc Generator 2.