action_controller.rb 2.5 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#--
# Copyright (c) 2004 David Heinemeier Hansson
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++

$:.unshift(File.dirname(__FILE__))
25
$:.unshift(File.dirname(__FILE__) + "/../../activesupport/lib")
D
Initial  
David Heinemeier Hansson 已提交
26

27
begin
28
  require 'active_support'  
29
rescue LoadError
30 31
  require 'rubygems'
  require_gem 'activesupport'
32
end
D
Initial  
David Heinemeier Hansson 已提交
33 34 35 36 37 38 39

require 'action_controller/base'
require 'action_controller/rescue'
require 'action_controller/benchmarking'
require 'action_controller/filters'
require 'action_controller/layout'
require 'action_controller/flash'
40
require 'action_controller/session'
41
require 'action_controller/dependencies'
42
require 'action_controller/pagination'
D
Initial  
David Heinemeier Hansson 已提交
43 44
require 'action_controller/scaffolding'
require 'action_controller/helpers'
45
require 'action_controller/cookies'
D
Initial  
David Heinemeier Hansson 已提交
46
require 'action_controller/cgi_process'
47
require 'action_controller/caching'
48
require 'action_controller/components'
49
require 'action_controller/verification'
50 51 52

require 'action_view'
ActionController::Base.template_class = ActionView::Base
D
Initial  
David Heinemeier Hansson 已提交
53 54 55 56 57 58 59

ActionController::Base.class_eval do
  include ActionController::Filters
  include ActionController::Layout
  include ActionController::Flash
  include ActionController::Benchmarking
  include ActionController::Rescue
60
  include ActionController::Dependencies
61
  include ActionController::Pagination
D
Initial  
David Heinemeier Hansson 已提交
62 63
  include ActionController::Scaffolding
  include ActionController::Helpers
64
  include ActionController::Cookies
65
  include ActionController::Session
66
  include ActionController::Caching
67
  include ActionController::Components
68
  include ActionController::Verification
D
Initial  
David Heinemeier Hansson 已提交
69
end