Class: Guard::Commands::Show
- Inherits:
-
Object
- Object
- Guard::Commands::Show
- Defined in:
- lib/guard/commands/show.rb
Class Method Summary collapse
Class Method Details
.import ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/guard/commands/show.rb', line 6 def self.import Pry::Commands.create_command "show" do group "Guard" description "Show all Guard plugins." " Usage: show\n\n Show all defined Guard plugins and their options.\n BANNER\n\n def process\n Guard.async_queue_add([:guard_show])\n end\n end\nend\n" |