Method: HighLine#output_rows

Defined in:
lib/highline.rb

#output_rowsObject

Returns the number of rows for the console, or a default if they cannot be determined.

[View source]

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