Sha256: 0d3e5526237c75317a57d0cf4efb6c3481a7a6ac8da38fc6f834c343d645c7ac

Contents?: true

Size: 456 Bytes

Versions: 53

Compression:

Stored size: 456 Bytes

Contents

require "pry"

module Guard
  module Commands
    class Show
      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
    end
  end
end

Version data entries

53 entries across 53 versions & 10 rubygems

Version Path
guard-2.13.0 lib/guard/commands/show.rb
guard-2.12.9 lib/guard/commands/show.rb
guard-2.12.8 lib/guard/commands/show.rb
guard-2.12.7 lib/guard/commands/show.rb
guard-2.12.6 lib/guard/commands/show.rb
guard-2.12.5 lib/guard/commands/show.rb
guard-2.12.4 lib/guard/commands/show.rb
guard-2.12.3 lib/guard/commands/show.rb
guard-2.12.2 lib/guard/commands/show.rb
guard-2.12.1 lib/guard/commands/show.rb
guard-2.12.0 lib/guard/commands/show.rb
guard-2.11.1 lib/guard/commands/show.rb
guard-2.11.0 lib/guard/commands/show.rb