Sha256: 8177037d6e118e244684d31ed1f2181807ef2d785622a8a092e3018f10d43893
Contents?: true
Size: 483 Bytes
Versions: 61
Compression:
Stored size: 483 Bytes
Contents
# frozen_string_literal: true module YARD module CLI # Handles help for commands # @since 0.6.0 class Help < Command def description; "Retrieves help for a command" end def run(*args) cmd = args.first && CommandParser.commands[args.first.to_sym] if cmd cmd.run('--help') else log.puts "Command #{args.first} not found." if args.first CommandParser.run('--help') end end end end end
Version data entries
61 entries across 60 versions & 9 rubygems