class Rouge::CLI

def self.doc

def self.doc
  return enum_for(:doc) unless block_given?
  yield %|usage: rougify [command] [args...]|
  yield %||
  yield %|where <command> is one of:|
  yield %|	highlight	#{Highlight.desc}|
  yield %|	help		#{Help.desc}|
  yield %|	style		#{Style.desc}|
  yield %|	list		#{List.desc}|
  yield %|	version		#{Version.desc}|
  yield %||
  yield %|See `rougify help <command>` for more info.|
end