aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2008-04-12 12:08:45 +1200
committerMichael Koziarski <michael@koziarski.com>2008-04-12 12:08:45 +1200
commit35904e207940386192cade3d0d871fae10da0510 (patch)
tree3d04f84ed403d1a2fe847f127d834d0bcc773bc3 /actionpack/lib
parent6ed9e68e21b612d5f4d8d04439c165f0f28d111f (diff)
parent9a7ab8b05b748932d25d3e05a3d09600afa99f7b (diff)
downloadrails-35904e207940386192cade3d0d871fae10da0510.tar.gz
rails-35904e207940386192cade3d0d871fae10da0510.tar.bz2
rails-35904e207940386192cade3d0d871fae10da0510.zip
Merge branch 'master' of git@github.com:rails/rails
Diffstat (limited to 'actionpack/lib')
-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: