I want to ask the user for input in Thor but have aliases:
$ Is this correct?: [yes, no, maybe] (yes)
Currently I have this:
class CLI < Thor
desc 'do_thing', 'does a thing'
def do_thing
answer = ask("Is this correct?", limited_to: %w{yes no maybe}, default: 'yes')
# do stuff
end
end
I would like the user to enter just the first letter of each option.
But I get this response:
$ Your response must be one of: [yes, no, maybe]. Please try again.
You cannot add aliases to
ask
as the answer will be matched directly against the list of options provided inlimited_to
. SourceIf you really want this functionality your best bet would be skip the
limited_options
and instead check the answer after the fact and respond accordingly e.g.Example:
If you want to use the built in limited options then you could use something like this but in my opinion this is not as appealing when represented in the CLI:
Which will output as: