# File lib/guard/commands/scope.rb, line 17
        def process(*entries)
          scope, rest = ::Guard::Interactor.convert_scope(entries)

          if scope[:plugins].empty? && scope[:groups].empty?
            output.puts 'Usage: scope <scope>'
          else
            ::Guard.scope = scope
          end
        end