Formats text in one line, stripping newlines and NOT wrapping
Return a wrapped version of text, assuming that the first line has already been indented by @indent characters. Resulting text does NOT have a newline in it.
# File lib/gli/commands/help_modules/one_line_wrapper.rb, line 12 def wrap(text) return String(text).gsub(/\n+/,' ').strip end
Args are ignored entirely; this keeps it consistent with the TextWrapper interface
# File lib/gli/commands/help_modules/one_line_wrapper.rb, line 7 def initialize(width,indent) end