Methods
Public Instance methods
uses_component_template_root()

Set the template root to be one directory behind the root dir of the controller. Examples:

  /code/weblog/components/admin/users_controller.rb with Admin::UsersController
    will use /code/weblog/components as template root
    and find templates in /code/weblog/components/admin/users/

  /code/weblog/components/admin/parties/users_controller.rb with Admin::Parties::UsersController
    will also use /code/weblog/components as template root
    and find templates in /code/weblog/components/admin/parties/users/
    # File vendor/rails/actionpack/lib/action_controller/components.rb, line 82
82:       def uses_component_template_root
83:         path_of_calling_controller = File.dirname(caller[0].split(/:\d+:/).first)
84:         path_of_controller_root    = path_of_calling_controller.sub(/#{controller_path.split("/")[0..-2]}$/, "") # " (for ruby-mode)
85: 
86:         self.template_root = path_of_controller_root
87:       end