Skip to content

rubyist/jacker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jacker - A simple time/job tracker

Jacker is an extremely simple time tracker. It doesn’t have any fancy features, you just tell it what you’re working on when you start and when you stop.

The 3 Parts of Jacker

The Ruby Library

The core of Jacker, its interface simple enough to describe right here:

Jacker.start('working on a task')
Jacker.current                       # => "working on a task"
Jacker.running?                      # => true
Jacker.stop

The Command Line Interface

A simple wrapper to the library for use from the command line.

$ jacker start working on jacker readme
$ jacker current # => working on jacker readme
$ jacker status  # => jacking: working on jacker readme
$ jacker stop
$ jacker status  # => not jacking
$ jacker report
  09/24/08 08:00 08:05 working on jacker readme

The OSX App

An app that sits in the status tray alowing you to start and stop jacking. You can hook a global keyboard shortcut to this. Here are some screenshots:

Downloading

You can install the rubyist-jacker gem from github to get the library and command line interface. Use the git repository to get the OSX app for now, it’s not quite polished enough for distribution yet. It currently expects you to have the gem installed.

About

An extremely elementary time tracker

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published