mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
744 B
Ruby
15 lines
744 B
Ruby
require "active_support/core_ext/module/attr_internal"
|
|
require "active_support/core_ext/module/delegation"
|
|
|
|
module AbstractController
|
|
autoload :Base, "abstract_controller/base"
|
|
autoload :Callbacks, "abstract_controller/callbacks"
|
|
autoload :Helpers, "abstract_controller/helpers"
|
|
autoload :Layouts, "abstract_controller/layouts"
|
|
autoload :Logger, "abstract_controller/logger"
|
|
autoload :RenderingController, "abstract_controller/rendering_controller"
|
|
# === Exceptions
|
|
autoload :ActionNotFound, "abstract_controller/exceptions"
|
|
autoload :DoubleRenderError, "abstract_controller/exceptions"
|
|
autoload :Error, "abstract_controller/exceptions"
|
|
end
|