# File lib/guard/dsl.rb, line 314
    def group(name, options = {})
      name = name.to_sym

      if block_given?
        ::Guard.add_group(name.to_s.downcase, options)
        @current_group = name

        yield if block_given?

        @current_group = nil
      end
    end