# File lib/guard.rb, line 34
    def create_guardfile(options = {})
      if !File.exist?('Guardfile')
        ::Guard::UI.info "Writing new Guardfile to #{ Dir.pwd }/Guardfile"
        FileUtils.cp(GUARDFILE_TEMPLATE, 'Guardfile')
      elsif options[:abort_on_existence]
        ::Guard::UI.error "Guardfile already exists at #{ Dir.pwd }/Guardfile"
        abort
      end
    end