helpers()
public
Provides a proxy to access helpers
methods from outside the view.
# File actionpack/lib/action_controller/helpers.rb, line 180
def helpers
unless @helper_proxy
@helper_proxy = ActionView::Base.new
@helper_proxy.extend master_helper_module
else
@helper_proxy
end
end