pomo 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY.md +5 -0
- data/README.md +13 -10
- data/lib/pomo/task.rb +1 -1
- data/lib/pomo/version.rb +1 -1
- metadata +2 -2
data/HISTORY.md
CHANGED
data/README.md
CHANGED
@@ -45,34 +45,37 @@ Taken from `pomo help`:
|
|
45
45
|
|
46
46
|
* Get started by adding a task:
|
47
47
|
|
48
|
-
$ pomo add "Fix
|
48
|
+
$ pomo add "Fix IE6 stying issues"
|
49
49
|
|
50
50
|
And another:
|
51
51
|
|
52
|
-
$ pomo add "Destroy
|
52
|
+
$ pomo add "Destroy IE6" --description "because IE6 is terrible"
|
53
53
|
|
54
54
|
* List your tasks (or use `pomo` which defaults to `pomo list`):
|
55
55
|
|
56
56
|
$ pomo list
|
57
|
-
0. Fix
|
58
|
-
1. Destroy
|
57
|
+
0. Fix IE6 stying issues : 25 minutes
|
58
|
+
1. Destroy IE6 : 25 minutes
|
59
59
|
|
60
60
|
* Start the first incomplete task:
|
61
61
|
|
62
62
|
$ pomo start
|
63
|
-
|
63
|
+
|
64
|
+
A notification window will display:
|
65
|
+
|
66
|
+

|
64
67
|
|
65
68
|
* Alternatively, you can start the first incomplete task with a progress bar:
|
66
69
|
|
67
70
|
$ pomo start -p
|
68
|
-
Started Fix
|
71
|
+
Started Fix IE6 stying issues, you have 25 minutes :)
|
69
72
|
(=........................) 24 minutes remaining
|
70
73
|
|
71
74
|
* Once you have completed the task, list again (alternatively `pomo ls`):
|
72
75
|
|
73
76
|
$ pomo ls
|
74
|
-
✓ 0. Fix
|
75
|
-
1. Destroy
|
77
|
+
✓ 0. Fix IE6 stying issues : 25 minutes
|
78
|
+
1. Destroy IE6 : 25 minutes
|
76
79
|
|
77
80
|
* Or take a break:
|
78
81
|
|
@@ -83,12 +86,12 @@ Taken from `pomo help`:
|
|
83
86
|
* List only remaining tasks:
|
84
87
|
|
85
88
|
$ pomo ls --incomplete
|
86
|
-
1. Destroy
|
89
|
+
1. Destroy IE6 : 25 minutes
|
87
90
|
|
88
91
|
* List only completed tasks:
|
89
92
|
|
90
93
|
$ pomo ls --complete
|
91
|
-
✓ 0. Fix
|
94
|
+
✓ 0. Fix IE6 stying issues : 25 minutes
|
92
95
|
|
93
96
|
* At any time mid-task you may terminate pomo via CTRL + C, at which
|
94
97
|
time you may manually complete the task:
|
data/lib/pomo/task.rb
CHANGED
data/lib/pomo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pomo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -153,7 +153,7 @@ rubyforge_project: pomo
|
|
153
153
|
rubygems_version: 1.8.24
|
154
154
|
signing_key:
|
155
155
|
specification_version: 3
|
156
|
-
summary: pomo-2.0.
|
156
|
+
summary: pomo-2.0.1
|
157
157
|
test_files:
|
158
158
|
- spec/pomo_spec.rb
|
159
159
|
- spec/spec_helper.rb
|