class HintMe::Cheatsheet::Printer
prints a cheatsheet to the console
Public Instance Methods
print(cheatsheet)
click to toggle source
prints the content of a cheatsheet on the console
@param cheatsheet [String]
# File lib/hintme/cheatsheet/printer.rb, line 13 def print(cheatsheet) puts ::TTY::Markdown.parse(cheatsheet) end