class Guard::Commands::Show

def self.import

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

def process

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