I need a way to remove the newline from the ask method included in highline. Here's my current code:
pass = ask( "Enter your password > " ) { |passman| passman.echo = false }
But whenever I run the that, the output is
Enter your password >
(typing goes here)
and I wish for this to not have a newline character. Any suggestions?
doc: highline says:
If the provided statement ends with a space or tab character, a newline will not be appended (output will be flush()ed).
So try it with a space:
pass = ask( "Enter your password > " ) { |passman| passman.echo = false }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With