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?