class Middleman::PreviewServer::DefaultInformation
This only is used if no other parser is available
The “default” behaviour is to fail because of “Checks::DenyAnyAny”
Public Class Methods
matches?(*)
click to toggle source
Always true
# File lib/middleman-core/preview_server/information.rb, line 90 def self.matches?(*) true end
new(*args)
click to toggle source
Calls superclass method
Middleman::PreviewServer::BasicInformation::new
# File lib/middleman-core/preview_server/information.rb, line 80 def initialize(*args) super # Make this fail @checks << Checks::DenyAnyAny.new end
Public Instance Methods
resolve_me(*)
click to toggle source
# File lib/middleman-core/preview_server/information.rb, line 87 def resolve_me(*); end