class Plz::Commands::Help

Public Class Methods

new(options: nil, schema: nil) click to toggle source

@param options [Slop] @param schema [JsonSchema::Schema]

# File lib/plz/commands/help.rb, line 6
def initialize(options: nil, schema: nil)
  @options = options
  @schema = schema
end

Public Instance Methods

call() click to toggle source

Logs out help message

# File lib/plz/commands/help.rb, line 12
def call
  puts %<#{@options}\nExamples:\n#{links.join("\n")}>
end

Private Instance Methods