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 CHANGED
@@ -1,3 +1,8 @@
1
+ 2.0.1 / 2012-12-16
2
+ ==================
3
+
4
+ * Minor fix bug release for tmux status bar coloring.
5
+
1
6
  2.0.0 / 2012-12-16
2
7
  ==================
3
8
 
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 IE stying issues"
48
+ $ pomo add "Fix IE6 stying issues"
49
49
 
50
50
  And another:
51
51
 
52
- $ pomo add "Destroy IE" --description "because IE is terrible"
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 IE stying issues : 25 minutes
58
- 1. Destroy IE : 25 minutes
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
- Started Fix IE stying issues, you have 25 minutes :)
63
+
64
+ A notification window will display:
65
+
66
+ ![Pomo OS X Notification](http://i.imgur.com/iEfdZ.png)
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 IE stying issues, you have 25 minutes :)
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 IE stying issues : 25 minutes
75
- 1. Destroy IE : 25 minutes
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 IE : 25 minutes
89
+ 1. Destroy IE6 : 25 minutes
87
90
 
88
91
  * List only completed tasks:
89
92
 
90
93
  $ pomo ls --complete
91
- ✓ 0. Fix IE stying issues : 25 minutes
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
@@ -147,7 +147,7 @@ module Pomo
147
147
  "#{time}:00"
148
148
  when 1..5
149
149
  "#[default]#[fg=red]#{time}:00#[default]"
150
- when 6..00
150
+ when 6..100
151
151
  "#[default]#[fg=green]#{time}:00#[default]"
152
152
  end
153
153
  end
data/lib/pomo/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Pomo
3
- VERSION = '2.0.0'
3
+ VERSION = '2.0.1'
4
4
  end
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.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.0
156
+ summary: pomo-2.0.1
157
157
  test_files:
158
158
  - spec/pomo_spec.rb
159
159
  - spec/spec_helper.rb