Sha256: ac85208aa3d48ecd7ffea6a2266c2d6147fddc1d1c1366dd4ee468134652b260
Contents?: true
Size: 440 Bytes
Versions: 54
Compression:
Stored size: 440 Bytes
Contents
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) if args.first && cmd = CommandParser.commands[args.first.to_sym] 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
54 entries across 45 versions & 8 rubygems