class Middleman::PreviewServer::Checks::DenyAnyAny

This validation always fails

Public Instance Methods

validate(information) click to toggle source

Validate

@param [Information] information

The information to be validated
# File lib/middleman-core/preview_server/checks.rb, line 74
def validate(information)
  information.valid = false
  information.reason = 'Undefined combination of options "--server-name" and "--bind-address". If you think this is wrong, please file a bug at "https://github.com/middleman/middleman"'
end