Method: TTY::Reader#select_console
- Defined in:
- lib/tty/reader.rb
#select_console(input) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Select appropriate console
144 145 146 147 148 149 150 |
# File 'lib/tty/reader.rb', line 144 def select_console(input) if self.class.windows? && !env["TTY_TEST"] WinConsole.new(input) else Console.new(input) end end |