Acme-Spinner

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

Acme-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

    my $s = Acme::Spinner->new();
    while(<>) {
	print 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.236 second using v1.01-cache-2.11-cpan-0f795438458 )