module Guard::Guardfile

def self.create_guardfile(options = {})

Other tags:
    See: https://github.com/guard/guard/wiki/Upgrading-to-Guard-2.0 - How to upgrade for Guard 2.0

Deprecated:
  • Use {Guardfile::Generator#create_guardfile} instead.
def self.create_guardfile(options = {})
  ::Guard::UI.deprecation(::Guard::Deprecator::CREATE_GUARDFILE_DEPRECATION)
  Generator.new(options).create_guardfile
end

def self.initialize_all_templates

Other tags:
    See: https://github.com/guard/guard/wiki/Upgrading-to-Guard-2.0 - How to upgrade for Guard 2.0

Deprecated:
  • Use {Guardfile::Generator#initialize_all_templates} instead.
def self.initialize_all_templates
  ::Guard::UI.deprecation(::Guard::Deprecator::INITIALIZE_ALL_TEMPLATES_DEPRECATION)
  Generator.new.initialize_all_templates
end

def self.initialize_template(plugin_name)

Other tags:
    See: https://github.com/guard/guard/wiki/Upgrading-to-Guard-2.0 - How to upgrade for Guard 2.0

Deprecated:
  • Use {Guardfile::Generator#initialize_template} instead.
def self.initialize_template(plugin_name)
  ::Guard::UI.deprecation(::Guard::Deprecator::INITIALIZE_TEMPLATE_DEPRECATION)
  Generator.new.initialize_template(plugin_name)
end