class Middleman::PreviewServer::DefaultInformation

The “default” behaviour is to fail because of “Checks::DenyAnyAny”
This only is used if no other parser is available

def self.matches?(*)

Always true
def self.matches?(*)
  true
end

def initialize(*args)

def initialize(*args)
  super
  # Make this fail
  @checks << Checks::DenyAnyAny.new
end

def resolve_me(*); end

def resolve_me(*); end