class Guard::Commands::Show
Public Class Methods
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
Source
# File lib/guard/commands/show.rb, line 17 def process Guard.async_queue_add([:guard_show]) end