module Motorhead::Helpers::UrlHelper

Public Instance Methods

method_missing(meth, *args, &block) click to toggle source

FIXME there has to be a better way doing this…

Calls superclass method
# File lib/motorhead/abstract_controller.rb, line 6
def method_missing(meth, *args, &block)
  if main_app.routes.url_helpers.instance_methods.include? meth
    main_app.send meth, *args, &block
  else
    super
  end
end