Sha256: f45f56fff36c445a169ac121ca4aee800ad9056c5bf8d935e3ec774a54b32609
Contents?: true
Size: 408 Bytes
Versions: 1
Compression:
Stored size: 408 Bytes
Contents
module ActionMailbox # See `ActionMailbox::Base` for how to specify routing. module Routing extend ActiveSupport::Concern included do cattr_accessor :router, default: ActionMailbox::Router.new end class_methods do def routing(routes) router.add_routes(routes) end def route(inbound_email) router.route(inbound_email) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
actionmailbox-0.1.0 | lib/action_mailbox/routing.rb |