Sha256: 2c6c30e7612b2eb8188f4e05fab75c3ebf2044cf5fc48965ce3eaa41df50dae0
Contents?: true
Size: 685 Bytes
Versions: 54
Compression:
Stored size: 685 Bytes
Contents
module YARD module CLI # Lists all constant and method names in the codebase. Uses {Yardoc} --list. class List < Command def description; 'Lists all constant and methods. Uses `yard doc --list`' end # Runs the commandline utility, parsing arguments and displaying a # list of objects # # @param [Array<String>] args the list of arguments. # @return [void] def run(*args) if args.include?('--help') log.puts "Usage: yard list [yardoc_options]" log.puts "Takes the same arguments as yardoc. See yardoc --help" else Yardoc.run('-c', '--list', *args) end end end end end
Version data entries
54 entries across 45 versions & 8 rubygems