This project has evolved and is now known as
Here's how it looks now (scroll down for the original README)
TimeTap helps you track the time you spend coding on each project while in TextMate.
Once it's launched you don't have to bother anymore starting/stopping timers or inventing some arbitrary amount of time to fill your fancy time tracker.
gem install time_tap
timetap --install
… and visit localhost:1111
- Get the codez:
git clone git:https://github.com/elia/timetap.git
- Run
bundle exec bin/timetap --install
TimeTap keeps an eye on the modification time of the frontmost file in TextMate and tells you how much time you spent on each project.
If you stop coding for a while while squeezing your brains TimeTap understands. TimeTap will consider "coding time" pauses to up to 30 minutes between to saves in the same project.
Technically it saves a timestamp+path of the frontmost file in TextMate every 30 seconds, then it digests all this information in a nice Sinatra webapp.
The server will respond on https://0.0.0.0:1111/.
- You code on TextMate.
- You save often (like me), at least every 30 minutes.
- You keep your code organized (I use ~/Code as main code folder).
TimeTap works with TextMate, TextMate2 and SublimeText2.
For TM2 and ST2 you need to install specific bundles (in the vendor/
folder).
Need to install rb-appscript
: gem install rb-appscript
You need to install the bundle in vendor/SublimeText2
You need to install the package in vendor/SublimeText2
TimeTap uses a config file to control where projects are kept, etc. the path is:
~/.timetap.config
Which can look like this:
port: 1111
# the port on localhost for the web interface
# These are used to identify project root folders
code_folders:
- ~/Code/MyCompany
- ~/Code
# It's highly recomended to use 1.9.3
ruby: /Users/elia/.rvm/bin/ruby-1.9.3-p286
TimeTap assumes you keep your projects inside a specific folder, like this:
~/Code/
tap/
tik_tak/
tk-win/
AcmeCorp/
website/
intranet/
But if you keep your projects grouped in subfolders like this:
~/Code/
Clients/
AcmeCorp/
website/
intranet/
BetaCorp/
skunkworks/
OpenSource/
project_one/
timetap/
then, the nested_project_layers
key tells TimeTap how deep to look for project names inside a hierarchy (in the example a value of 2 will catch AcmeCorp
, BetaCorp
, project_one
and timetap
).
Use it, love it, then...
- Fork the project.
- Make your feature addition or bug fix.
- Add tests for it. This is important so I don't break it in a future version unintentionally.
- Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
- Send me a pull request. Bonus points for topic branches.
make it more configurablegemify (with jeweler)support other text editors, or at least make it easy to do so- commands to install editor packages/bundles
- (r)spec it!
- flatten encoding quick-fixes with proper solutions (eat and spit only utf8)
- integration with external (online) time tracking tools
- Ryan Wilcox @rwilcox
Copyright © 2009-2012 Elia Schito. See LICENSE for details.