Provides a proxy to access helpers
methods from outside the view.
# File actionpack/lib/action_controller/metal/helpers.rb, line 75
def helpers
@helper_proxy ||= begin
proxy = ActionView::Base.new
proxy.config = config.inheritable_copy
proxy.extend(_helpers)
end
end