8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/guard/commands/scope.rb', line 8
def self.import
Pry::Commands.create_command "scope" do
group "Guard"
description "Scope Guard actions to groups and plugins."
banner " Usage: scope <scope>\n\n Set the global Guard scope.\n BANNER\n\n def process(*entries)\n scope, unknown = Guard.state.session.convert_scope(entries)\n\n unless unknown.empty?\n output.puts \"Unknown scopes: \#{unknown.join(',') }\"\n return\n end\n\n if scope[:plugins].empty? && scope[:groups].empty?\n output.puts \"Usage: scope <scope>\"\n return\n end\n\n Guard.state.scope.from_interactor(scope)\n end\n end\nend\n"
|