Sha256: e96fd5a86dc723d911a5d0532cfd4230f6c691e1d49ae9862aeee0e2a0b734e6
Contents?: true
Size: 586 Bytes
Versions: 62
Compression:
Stored size: 586 Bytes
Contents
require "pry" require "guard" module Guard module Commands class Pause def self.import Pry::Commands.create_command "pause" do group "Guard" description "Toggles the file listener." banner <<-BANNER Usage: pause Toggles the file listener on and off. When the file listener is paused, the default Guard Pry prompt will show the pause sign `[p]`. BANNER def process ::Guard.async_queue_add([:guard_pause]) end end end end end end
Version data entries
62 entries across 62 versions & 10 rubygems