class Guard::Commands::Pause

Public Class Methods

import() click to toggle source
# File lib/guard/commands/pause.rb, line 8
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

Public Instance Methods

process() click to toggle source
# File lib/guard/commands/pause.rb, line 22
def process
  ::Guard.async_queue_add([:guard_pause])
end