Module: CLI::UI::Terminal
- Defined in:
- lib/cli/ui/terminal.rb
Constant Summary collapse
- DEFAULT_WIDTH =
80- DEFAULT_HEIGHT =
24
Class Method Summary collapse
-
.height ⇒ Object
Returns the width of the terminal, if possible Otherwise, will return DEFAULT_HEIGHT.
-
.setup_winsize_trap ⇒ Object
: -> void.
-
.width ⇒ Object
Returns the width of the terminal, if possible Otherwise will return DEFAULT_WIDTH.
-
.winsize ⇒ Object
: -> [Integer, Integer].
Class Method Details
.height ⇒ Object
Returns the width of the terminal, if possible Otherwise, will return DEFAULT_HEIGHT
: -> Integer
25 26 27 |
# File 'lib/cli/ui/terminal.rb', line 25 def height winsize[0] end |
.setup_winsize_trap ⇒ Object
: -> void
46 47 48 49 50 |
# File 'lib/cli/ui/terminal.rb', line 46 def setup_winsize_trap @winsize_trap ||= Signal.trap('WINCH') do @winsize = nil end end |
.width ⇒ Object
Returns the width of the terminal, if possible Otherwise will return DEFAULT_WIDTH
: -> Integer
17 18 19 |
# File 'lib/cli/ui/terminal.rb', line 17 def width winsize[1] end |
.winsize ⇒ Object
: -> [Integer, Integer]
30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/cli/ui/terminal.rb', line 30 def winsize @winsize ||= begin winsize = IO.console.winsize setup_winsize_trap if winsize.any?(&:zero?) [DEFAULT_HEIGHT, DEFAULT_WIDTH] else winsize end rescue [DEFAULT_HEIGHT, DEFAULT_WIDTH] end end |