class Jekyll::Configuration

def validate

Returns the configuration Hash

Public: Ensure the proper options are set in the configuration
def validate
  config = clone
  check_plugins(config)
  check_include_exclude(config)
  config
end