Class: Middleman::PreviewServer::Checks::DenyAnyAny
- Inherits:
-
BasicCheck
- Object
- BasicCheck
- Middleman::PreviewServer::Checks::DenyAnyAny
- Defined in:
- lib/middleman-core/preview_server/checks.rb
Overview
This validation always fails
Instance Method Summary collapse
-
#validate(information) ⇒ Object
Validate.
Instance Method Details
#validate(information) ⇒ Object
Validate
74 75 76 77 |
# 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 |