aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/components.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-04-12 10:26:29 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-04-12 10:26:29 -0500
commit342dcfe789d11e07f89d4ddfc3dc581da650a65e (patch)
tree766fd0cabb0090b7f85bfa5a809997cfaf3da9db /actionpack/lib/action_controller/components.rb
parentb8bc92e61914cc6ef9d6ca12aba27d440ec0ebd5 (diff)
parent60be4b09f51d2560802ebd744893bb6f737ef57c (diff)
downloadrails-342dcfe789d11e07f89d4ddfc3dc581da650a65e.tar.gz
rails-342dcfe789d11e07f89d4ddfc3dc581da650a65e.tar.bz2
rails-342dcfe789d11e07f89d4ddfc3dc581da650a65e.zip
Merge branch 'master' of git://github.com/rails/rails
Diffstat (limited to 'actionpack/lib/action_controller/components.rb')
-rw-r--r--actionpack/lib/action_controller/components.rb13
1 files changed, 7 insertions, 6 deletions
diff --git a/actionpack/lib/action_controller/components.rb b/actionpack/lib/action_controller/components.rb
index 7f7ecfff78..8275bd380a 100644
--- a/actionpack/lib/action_controller/components.rb
+++ b/actionpack/lib/action_controller/components.rb
@@ -39,12 +39,7 @@ module ActionController #:nodoc:
base.class_eval do
include InstanceMethods
extend ClassMethods
-
- helper do
- def render_component(options)
- @controller.send!(:render_component_as_string, options)
- end
- end
+ helper HelperMethods
# If this controller was instantiated to process a component request,
# +parent_controller+ points to the instantiator of this controller.
@@ -67,6 +62,12 @@ module ActionController #:nodoc:
end
end
+ module HelperMethods
+ def render_component(options)
+ @controller.send!(:render_component_as_string, options)
+ end
+ end
+
module InstanceMethods
# Extracts the action_name from the request parameters and performs that action.
def process_with_components(request, response, method = :perform_action, *arguments) #:nodoc: