Method: Landable::ApplicationHelper#method_missing
- Defined in:
- app/helpers/landable/application_helper.rb
#method_missing(method, *args, &block) ⇒ Object
3 4 5 6 |
# File 'app/helpers/landable/application_helper.rb', line 3 def method_missing(method, *args, &block) return main_app.send(method, *args) if method =~ /_(path|url)$/ && main_app.respond_to?(method) super end |