The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Prophet::CLI::ProgressBar;
use Any::Moose 'Role';

use Time::Progress;
use Params::Validate ':all';

sub progress_bar { 
    my $self = shift;
    my %args = validate(@_, {max => 1, format => { optional =>1, default => "%30b %p %L (%E remaining)\r" }});
    my $bar = Time::Progress->new();


    $bar->attr(max => $args{max});
    my $bar_count = 0;
    my $format = $args{format};
    return sub {
       print $bar->report(  $format, ++$bar_count );
    }
}
no Any::Moose;

1;