public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
ezmobius (author)
Tue Mar 04 16:50:13 -0800 2008
commit  8c27e9c3d588ffb19f571539711fcc375db99c43
tree    88d24cf869c608a24799afc1863a35ccc309e462
parent  826d11734cd188ed0c4ff32507a5c4a79a259689
merb-core / lib / merb-core / autoload.rb
100644 29 lines (27 sloc) 1.387 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 :Controller, "merb-core/controller/merb_controller"
  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 :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"
 
module Merb
  module InlineTemplates; end
end