Method: Nuntius::ApplicationHelper#method_missing

Defined in:
app/helpers/nuntius/application_helper.rb

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



65
66
67
68
69
70
71
# File 'app/helpers/nuntius/application_helper.rb', line 65

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