1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/action_mailbox.rb
George Claghorn 1c4a57e0e5 Remove needless autoloads
ActionMailbox::Callbacks and ActionMailbox::Routing are eagerly loaded where they're used.
2018-10-17 12:48:45 -04:00

11 lines
207 B
Ruby

require "action_mailbox/engine"
module ActionMailbox
extend ActiveSupport::Autoload
autoload :Base
autoload :Router
mattr_accessor :logger
mattr_accessor :incinerate_after, default: 30.days
end