Sha256: a4805ef769e666d713993f20e7718ed657cf122b523bc2c218da802358050a3d
Contents?: true
Size: 586 Bytes
Versions: 53
Compression:
Stored size: 586 Bytes
Contents
module GLI module Commands module HelpModules # Formats text in one line, stripping newlines and NOT wrapping class OneLineWrapper # Args are ignored entirely; this keeps it consistent with the TextWrapper interface def initialize(width,indent) end # 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. def wrap(text) return String(text).gsub(/\n+/,' ').strip end end end end end
Version data entries
53 entries across 53 versions & 2 rubygems