Module: Chatty::ApplicationHelper

Includes:
SimpleFormRansackHelper
Defined in:
app/helpers/chatty/application_helper.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



4
5
6
7
# File 'app/helpers/chatty/application_helper.rb', line 4

def method_missing(method, *args, &block)
  return main_app.send(method, *args, &block) if main_app.respond_to?(method)
  super
end