App-TimeTracker
view release on metacpan or search on metacpan
bin/tracker view on Meta::CPAN
#!/usr/bin/perl
# ABSTRACT: run App::TimeTracker
# PODNAME: tracker
our $VERSION = '3.010'; # VERSION
use strict;
use warnings;
use App::TimeTracker::Proto;
binmode(STDOUT, ":utf8");
my $app = App::TimeTracker::Proto->new->run;
__END__
=pod
=encoding UTF-8
=head1 NAME
tracker - run App::TimeTracker
=head1 VERSION
version 3.010
=head1 SYNOPSIS
# initialize tracker for the 'Some-Project' directory
~/perl/Some-Project$ tracker init
~/perl/Some-Project$ tracker start
Started working on Some-Project at 09:03:41
~/perl/Some-Project$ tracker stop
Worked 00:07:42 on Some-Project
=head1 DESCRIPTION
C<tracker> is the front end script to L<App::TimeTracker>. C<tracker>
allows you to easily track and report the time you spend on various
jobs, projects, tasks etc. from the command line.
Custom commands or adaptations to your workflow can be implemented via
an "interesting" set of L<Moose>-powered plugins. You can configure
different sets of plugins for different jobs or projects.
B<Tip:> Use C<tracker plugins> to list all installed plugins. Read more
about each plugin in C<App::TimeTracker::Command::PLUGIN-NAME>.
=head2 Note about (missing) Plugins
Up to version 2.028 a lot of plugins where included in the main distribution
C<App-TimeTracker>. To make installation easier and faster, all non-core
command plugins have been moved into distinct, standalone distributions.
The following plugins are affected:
=over
=item * App::TimeTracker::Git (which also includes SyncViaGit)
=item * App::TimeTracker::RT
=item * App::TimeTracker::TellRemote (which was called Post2IRC earlier)
=item * App::TimeTracker::Overtime has been removed, while the idea is nice, the API and implementation are not good enough.
=item * App::TimeTracker::TextNotify has been removed.
( run in 1.601 second using v1.01-cache-2.11-cpan-140bd7fdf52 )