Sha256: c72871655271f968703196120d11a86892da48d221e09c7381b9e2ae0d1d4273
Contents?: true
Size: 1.35 KB
Versions: 8
Compression:
Stored size: 1.35 KB
Contents
require "guard/guardfile/evaluator" require "guard/guardfile/generator" require "guard/ui" module Guard # @deprecated Use instance methods of {Guardfile::Evaluator} and # {Guardfile::Generator} instead. # # @see Guardfile::Evaluator # @see Guardfile::Generator # module Guardfile # @deprecated Use {Guardfile::Generator#create_guardfile} instead. # # @see https://github.com/guard/guard/wiki/Upgrading-to-Guard-2.0 How to # upgrade for Guard 2.0 # def self.create_guardfile(options = {}) UI.deprecation(Deprecator::CREATE_GUARDFILE_DEPRECATION) Generator.new(options).create_guardfile end # @deprecated Use {Guardfile::Generator#initialize_template} instead. # # @see https://github.com/guard/guard/wiki/Upgrading-to-Guard-2.0 How to # upgrade for Guard 2.0 # def self.initialize_template(plugin_name) UI.deprecation(Deprecator::INITIALIZE_TEMPLATE_DEPRECATION) Generator.new.initialize_template(plugin_name) end # @deprecated Use {Guardfile::Generator#initialize_all_templates} instead. # # @see https://github.com/guard/guard/wiki/Upgrading-to-Guard-2.0 How to # upgrade for Guard 2.0 # def self.initialize_all_templates UI.deprecation(Deprecator::INITIALIZE_ALL_TEMPLATES_DEPRECATION) Generator.new.initialize_all_templates end end end
Version data entries
8 entries across 7 versions & 1 rubygems