class Object

Public Instance Methods

flag(short, full) click to toggle source
# File lib/aoc_cli/help.rb, line 4
def flag(short, full)
        str = "    #{short.yellow.bold} [#{full.blue.italic}]"
        full.length > 6 ?
                str += "\t"  :
                str += "\t\t"
        str
end
title(title) click to toggle source
# File lib/aoc_cli/help.rb, line 1
def title(title)
        "#{title.bold}"
end