Method: Sinatra::Extension#method_missing

Defined in:
lib/sinatra/extension.rb

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


83
84
85
86
87
88
# File 'lib/sinatra/extension.rb', line 83

def method_missing(method, *args, &block)
  return super unless Sinatra::Base.respond_to? method

  record(method, *args, &block)
  DontCall.new(method)
end