Method: Context::BaseContextHelper#method_missing
- Defined in:
- lib/context/base_context_helper.rb
#method_missing(method_name, *args, &block) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/context/base_context_helper.rb', line 3 def method_missing(method_name, *args, &block) if @__context && @__context.has_view_helper?(method_name) @__context.public_send(method_name, *args, &block) else super end end |