module Routemaster::Config::Classmethods

Public Instance Methods

method_missing(method, *args, &block) click to toggle source
# File lib/routemaster/config.rb, line 11
def method_missing(method, *args, &block)
  instance.send(method, *args, &block)
end
respond_to?(method, include_all = false) click to toggle source
# File lib/routemaster/config.rb, line 15
def respond_to?(method, include_all = false)
  instance.respond_to?(method, include_all)
end