# File lib/guard/dsl.rb, line 378
    def guard(name, options = {})
      @watchers  = []
      @callbacks = []
      @current_group ||= :default

      yield if block_given?

      options.update(:group => @current_group)
      ::Guard.add_guard(name.to_s.downcase, @watchers, @callbacks, options)
    end