aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller.rb
blob: 1a6c4278c99336458f94e8aa3722c5a26be17854 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 :LocalizedCache,      "abstract_controller/localized_cache"
  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