module Middleman::CoreExtensions::Request::ClassMethods

def inst(&block)

Returns:
  • (Middleman::Application) -

Other tags:
    Private: -
def inst(&block)
  @inst ||= begin
    mm = new(&block)
    mm.run_hook :ready
    mm
  end
end