Sha256: de8b5dd6d3df7d44e554679459d4eb046a9a4cfa3ebba71e1299112189fce1ee
Contents?: true
Size: 861 Bytes
Versions: 3
Compression:
Stored size: 861 Bytes
Contents
# required for async_queue_add require "pry" require "guard" module Guard module Commands class All def self.import Pry::Commands.create_command "all" do group "Guard" description "Run all plugins." banner <<-BANNER Usage: all <scope> Run the Guard plugin `run_all` action. You may want to specify an optional scope to the action, either the name of a Guard plugin or a plugin group. BANNER def process(*entries) scopes, unknown = ::Guard.state.session.convert_scope(entries) unless unknown.empty? output.puts "Unknown scopes: #{ unknown.join(", ") }" return end ::Guard.async_queue_add([:guard_run_all, scopes]) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
guard-2.10.5 | lib/guard/commands/all.rb |
guard-2.10.4 | lib/guard/commands/all.rb |
guard-2.10.3 | lib/guard/commands/all.rb |