Acme-Spinner
view release on metacpan or search on metacpan
1234567891011121314Acme-Spinner
This is a simple module that helps manage one of those silly spinning
bar things that some programs
use
when
they want you to think they
are busy.
INSTALLATION
To install this module, run the following commands:
perl Makefile.PL
make
make test
make install
lib/Acme/Spinner.pm view on Meta::CPAN
2223242526272829303132333435363738394041424344454647484950
my
$s
= Acme::Spinner->new();
while
(<>) {
STDERR
$s
->
next
(),
"\r"
;
do_interesting_stuff(
with
=>
$_
);
}
=head1 ABSTRACT
This is a simple module that helps manage one of those silly spinning
bar things that some programs use when they want you to think they
are busy.
=head1 DESCRIPTION
Some programs take a long time to do some functions. Sometimes
people are get confused about what is happening and start pressing
buttons in an effort to illicit some response while a program is
taking a long time. Strangely enough if the program gives the
person using it something to watch while it is busy with other work
the person is much more likely to leave the program alone so that
can finish its work.
=head1 METHODS
=head2 new
The creator.
=cut
( run in 0.239 second using v1.01-cache-2.11-cpan-0f795438458 )