Fix readme.

This commit is contained in:
Glenn Y. Rolland 2015-02-25 17:22:20 +01:00
parent f12c7da4e5
commit 1f6706e98e
2 changed files with 9 additions and 8 deletions

View file

@ -8,7 +8,7 @@ Installation
Install the project with: Install the project with:
$ gem install timecost gem install timecost
Usage Usage
----- -----
@ -32,8 +32,8 @@ TOTAL: 3.36 hours
To get the time spent on your project since a given date To get the time spent on your project since a given date
``` ```
$ git timecost -d 2013-03-01 $ git timecost --after 2013-03-01
set date filter to 2013-03-01 set date filter to >= 2013-03-01
(1.0) 2013-09-23T13:02:39+02:00 - 2013-09-23T14:02:39+02:00 (1.0) 2013-09-23T13:02:39+02:00 - 2013-09-23T14:02:39+02:00
* Glenn Y. Rolland <glenux@glenux.net> * Glenn Y. Rolland <glenux@glenux.net>
Add support for import / export / merge of ranges. Add support for import / export / merge of ranges.
@ -42,15 +42,16 @@ TOTAL: 1.00 hours
``` ```
For other possibilities For other possibilities
```
$ git timecost -h git timecost -h
```
Contributing Contributing
------------ ------------
1. Fork it ( https://github.com/[my-github-username]/timecost/fork ) 1. Fork it ( https://github.com/glenux/timecost/fork )
2. Create your feature branch (`git checkout -b my-new-feature`) 2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`) 3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`) 4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request 5. Create a new Pull Request

View file

@ -1,3 +1,3 @@
module Timecost module Timecost
VERSION = "0.2.0" VERSION = "0.2.1"
end end