Class: Guard::Commands::Pause
- Inherits:
-
Object
- Object
- Guard::Commands::Pause
- Defined in:
- lib/guard/commands/pause.rb
Class Method Summary collapse
Class Method Details
.import ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/guard/commands/pause.rb', line 8 def self.import Pry::Commands.create_command "pause" do group "Guard" description "Toggles the file listener." " Usage: pause\n\n Toggles the file listener on and off.\n\n When the file listener is paused, the default Guard Pry\n prompt will show the pause sign `[p]`.\n BANNER\n\n def process\n ::Guard.async_queue_add([:guard_pause])\n end\n end\nend\n" |