module Jekyll::Algolia::Configurator

def self.dry_run?

When set to true, no indexing operations will be sent to the API

Public: Returns true if the command is run in verbose mode
def self.dry_run?
  value = get('dry_run')
  return true if value == true
  false
end