Method: HighLine#output_rows
- Defined in:
- lib/highline.rb
permalink #output_rows ⇒ Object
Returns the number of rows for the console, or a default if they cannot be determined.
486 487 488 489 490 491 |
# File 'lib/highline.rb', line 486 def output_rows return 24 unless @output.tty? terminal.terminal_size.last rescue NoMethodError return 24 end |