class GLI::Commands::HelpModules::TTYOnlyWrapper
Formats text in one line, stripping newlines and NOT wrapping
Public Class Methods
new(width,indent)
click to toggle source
Args are ignored entirely; this keeps it consistent with the TextWrapper interface
# File lib/gli/commands/help_modules/tty_only_wrapper.rb, line 7 def initialize(width,indent) @proxy = if STDOUT.tty? TextWrapper.new(width,indent) else OneLineWrapper.new(width,indent) end end
Public Instance Methods
wrap(text)
click to toggle source
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/tty_only_wrapper.rb, line 17 def wrap(text) @proxy.wrap(text) end