Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubyist/jacker
An extremely elementary time tracker
https://github.com/rubyist/jacker
Last synced: 23 days ago
JSON representation
An extremely elementary time tracker
- Host: GitHub
- URL: https://github.com/rubyist/jacker
- Owner: rubyist
- License: mit
- Created: 2008-09-24T12:25:30.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2008-10-03T03:05:46.000Z (about 16 years ago)
- Last Synced: 2024-09-17T07:50:55.407Z (about 2 months ago)
- Language: Ruby
- Homepage:
- Size: 98.6 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: MIT-LICENSE
Awesome Lists containing this project
README
= 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:http://img.skitch.com/20080924-bj65jybi5g36f9qtkj91a83exb.jpg
http://img.skitch.com/20080924-gjgiifghra2ajxng6x6bcb7x4.jpg
== 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.