# File lib/meez/meez.rb, line 152
  def self.init_guard(cookbook_name, options)
    puts '* Initializing Guard'
    path = File.join(options[:path], cookbook_name)
    write_template('Guardfile.erb', path, cookbook_name, options)
    add_gem(path, 'guard', '>= 2.6')
    add_gem(path, 'guard-rubocop', '>= 1.1')
    add_gem(path, 'guard-foodcritic', '>= 1.0.2')
  end