Sha256: d6d7f3a8fcb62185c2cfd72dfb378be33ed0503d61aadec58a9954fad7c39f43

Contents?: true

Size: 1.56 KB

Versions: 1

Compression:

Stored size: 1.56 KB

Contents

module Merb
  autoload :AbstractController,       "merb-core/controller/abstract_controller"
  autoload :BootLoader,               "merb-core/bootloader"
  autoload :Config,                   "merb-core/config"
  autoload :Const,                    "merb-core/constants"
  autoload :ControllerMixin,          "merb-core/controller/mixins/controller"
  autoload :ControllerExceptions,     "merb-core/controller/exceptions"
  autoload :Cookies,                  "merb-core/dispatch/cookies"
  autoload :Dispatcher,               "merb-core/dispatch/dispatcher"
  autoload :AuthenticationMixin,      "merb-core/controller/mixins/authentication"
  autoload :BasicAuthenticationMixin, "merb-core/controller/mixins/authentication/basic"
  autoload :ErubisCaptureMixin,       "merb-core/controller/mixins/erubis_capture"
  autoload :Plugins,                  "merb-core/plugins"
  autoload :Rack,                     "merb-core/rack"
  autoload :RenderMixin,              "merb-core/controller/mixins/render"
  autoload :Request,                  "merb-core/dispatch/request"
  autoload :ResponderMixin,           "merb-core/controller/mixins/responder"
  autoload :Router,                   "merb-core/dispatch/router"
  autoload :SessionMixin,             "merb-core/dispatch/session"
  autoload :Test,                     "merb-core/test"
end

# Require this rather than autoloading it so we can be sure the default template
# gets registered
require 'merb-core/core_ext'
require "merb-core/controller/template"
require "merb-core/controller/merb_controller"

module Merb
  module InlineTemplates; end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
merb-core-0.9.3 lib/merb-core/autoload.rb