On Oct 5, 2008, at 6:03 PM, Jeremy Pruitt wrote:

> Hello, fellow ruby enthusiasts! I'm a first time caller, long time
> listener.

Glad you decided to join us.

> Does highline allow you to send the "ask" prompt to STDERR?

Sure.  If using the import interface, you can do it like this:

$terminal = HighLine.new($stdin, $stderr)
ask( )

Otherwise, you can just build the proper HighLine instance and use it:

hl = HighLine.new($stdin, $stderr)
hl.ask( )

Hope that helps.