Method: Rake::Application#truncate_output?
- Defined in:
- lib/rake/application.rb
#truncate_output? ⇒ Boolean
We will truncate output if we are outputting to a TTY or if we’ve been given an explicit column width to honor
243 244 245 |
# File 'lib/rake/application.rb', line 243 def truncate_output? tty_output? || @terminal_columns.nonzero? end |