class Guard::Commands::Show

Public Class Methods

import() click to toggle source
# File lib/guard/commands/show.rb, line 6
def self.import
  Pry::Commands.create_command "show" do
    group "Guard"
    description "Show all Guard plugins."

    banner <<-BANNER
    Usage: show

    Show all defined Guard plugins and their options.
    BANNER

    def process
      Guard.async_queue_add([:guard_show])
    end
  end
end

Public Instance Methods

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