Sha256: b6c26a9f54d618947faaf4f4d9613a3374fa271ef1d83ab3daebba74188183db
Contents?: true
Size: 882 Bytes
Versions: 10
Compression:
Stored size: 882 Bytes
Contents
require "pry" require "guard/interactor" require "guard" module Guard module Commands class Scope def self.import Pry::Commands.create_command "scope" do group "Guard" description "Scope Guard actions to groups and plugins." banner <<-BANNER Usage: scope <scope> Set the global Guard scope. BANNER def process(*entries) scope, unknown = Guard.state.session.convert_scope(entries) unless unknown.empty? output.puts "Unknown scopes: #{unknown.join(",") }" return end if scope[:plugins].empty? && scope[:groups].empty? output.puts "Usage: scope <scope>" return end Guard.state.scope.from_interactor(scope) end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems