Class: IO
- Inherits:
-
Object
- Object
- IO
- Defined in:
- lib/cem_acpt/provision/terraform/terraform_cmd.rb
Overview
IO monkey patch for non-blocking readline
Instance Method Summary collapse
Instance Method Details
#readline_nonblock ⇒ Object
172 173 174 175 176 177 178 179 |
# File 'lib/cem_acpt/provision/terraform/terraform_cmd.rb', line 172 def readline_nonblock rlnb = [] while (ch = read_nonblock(1)) rlnb << ch break if ch == "\n" end rlnb.join end |