IO::Prompt::Tiny - Prompt for user input with a default option
version 0.003
use IO::Prompt::Tiny qw/prompt/;
my $answer = prompt("Yes or no? (y/n)", "n");
This is an extremely simple prompting module, based on the extremely simple
prompt offered by the ExtUtils::MakeMaker manpage.In many cases, that's all you need and
this module gives it to you without all the overhead of ExtUtils::MakeMaker
just to prompt for input.
It doesn't do any validation, coloring, menus, timeouts, or any of the wild,
crazy, cool stuff that other prompting modules do. It just prompts with
a default. That's it!
The following function may be explicitly imported. No functions are imported by
default.
my $value = prompt($message);
my $value = prompt($message, $default);
The prompt() function displays the message as a prompt for input and returns
the (chomped) response from the user, or the default if the response was
empty.
If the program is not running interactively or if the PERL_MM_USE_DEFAULT
environment variable is set to true, the default will be used without
prompting.
If no default is provided, an empty string will be used instead.
Unlike ExtUtils::MakeMaker::prompt(), this prompt() does not use
prototypes, so this will work as expected:
my @args = ($prompt, $default);
prompt(@args);
If set to a true value, IO::Prompt::Tiny will always return the default
without waiting for user input, just like ExtUtils::MakeMaker does.
The guts of this module are based on the ExtUtils::MakeMaker manpage and
the IO::Interactive::Tiny manpage (which is based on the IO::Interactive manpage).
Thank you to the authors of those modules.
Please report any bugs or feature requests through the issue tracker
at https://github.com/dagolden/IO-Prompt-Tiny/issues.
You will be notified automatically of any progress on your issue.
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
https://github.com/dagolden/IO-Prompt-Tiny
git clone https://github.com/dagolden/IO-Prompt-Tiny.git
David Golden <dagolden@cpan.org>
This software is Copyright (c) 2012 by David Golden.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
|