mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Ruby 1.9 compat: workaround module_eval issue
This commit is contained in:
parent
4364c361b5
commit
13e7849785
1 changed files with 7 additions and 6 deletions
|
@ -39,12 +39,7 @@ module ActionController #:nodoc:
|
||||||
base.class_eval do
|
base.class_eval do
|
||||||
include InstanceMethods
|
include InstanceMethods
|
||||||
extend ClassMethods
|
extend ClassMethods
|
||||||
|
helper HelperMethods
|
||||||
helper do
|
|
||||||
def render_component(options)
|
|
||||||
@controller.send!(:render_component_as_string, options)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
# If this controller was instantiated to process a component request,
|
# If this controller was instantiated to process a component request,
|
||||||
# +parent_controller+ points to the instantiator of this controller.
|
# +parent_controller+ points to the instantiator of this controller.
|
||||||
|
@ -67,6 +62,12 @@ module ActionController #:nodoc:
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module HelperMethods
|
||||||
|
def render_component(options)
|
||||||
|
@controller.send!(:render_component_as_string, options)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
module InstanceMethods
|
module InstanceMethods
|
||||||
# Extracts the action_name from the request parameters and performs that action.
|
# Extracts the action_name from the request parameters and performs that action.
|
||||||
def process_with_components(request, response, method = :perform_action, *arguments) #:nodoc:
|
def process_with_components(request, response, method = :perform_action, *arguments) #:nodoc:
|
||||||
|
|
Loading…
Reference in a new issue