Class: ArrayProgressConfiguration

Inherits:
Object
  • Object
show all
Defined in:
lib/array_with_progress/array_progress_configuration.rb

Class Method Summary collapse

Class Method Details

.item_widthObject



8
9
10
# File 'lib/array_with_progress/array_progress_configuration.rb', line 8

def self.item_width
  terminal_width - 22
end

.terminal_widthObject



2
3
4
5
6
# File 'lib/array_with_progress/array_progress_configuration.rb', line 2

def self.terminal_width
  `tput cols`.to_i
rescue Errno::ENOENT => e
  80
end