# File lib/guard.rb, line 497
    def convert_scopes(scopes)
      if plugin = scopes.delete(:guard)
        scopes[:plugins] = [plugin]
      end

      if group = scopes.delete(:group)
        scopes[:groups] = [group]
      end

      scopes
    end