Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 697

Show
Ignore:
Timestamp:
02/19/05 20:29:55 (4 years ago)
Author:
david
Message:

Added preliminary version of render_component

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller.rb

    r648 r697  
    4848require 'action_controller/cgi_process' 
    4949require 'action_controller/caching' 
     50require 'action_controller/components' 
     51 
     52require 'action_view' 
     53ActionController::Base.template_class = ActionView::Base 
    5054 
    5155ActionController::Base.class_eval do 
     
    6165  include ActionController::Session 
    6266  include ActionController::Caching 
     67  include ActionController::Components 
    6368end 
    64  
    65 require 'action_view' 
    66 ActionController::Base.template_class = ActionView::Base