Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
4k views

Ruby - Passing Blocks To Methods

I'm trying to do Ruby password input with the Highline gem and since I have the user input the password twice, I'd like to eliminate the duplication on the blocks I'm passing in. For example, a simple ...
2
votes
1answer
241 views

Watir changes highline's “ask” method

I've encoutered some strange functionality, when using Watir and Highline together. Here is simple example: require 'highline/import' comp = ask("Company? ") { |q| q.default = "MySuperCompany" } ...
1
vote
1answer
94 views

How to remove newline from ask method in Highline library?

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 ...
1
vote
2answers
429 views

Ruby? How to ignore newlines in cut and pasted user input?

I've written a little Ruby script that requires some user input. I anticipate that users might be a little lazy at some point during the data entry where long entries are required and that they might ...
0
votes
1answer
443 views

Getting 'choice' to work in Highline Ruby Gem without error and getting variable from it

I'm having a couple of problems using Highline in Ruby, and trying to get the choice element, detailed here, to work. At the moment the following code produces the error "error: wrong number of ...
0
votes
1answer
271 views

Rewrite a ruby class on the fly

I'm using HighLine to write my console application and I would like to modify the HighLine::Question::in_range! function so that tab completion stayed activated but that highline do not bother ...