pomo 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.md CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ 0.5.0 / 2010-01-14
3
+ ==================
4
+
5
+ * Added cleaner checkmark. Closes #16
6
+
2
7
  0.4.0 / 2009-11-23
3
8
  ==================
4
9
 
data/Readme.md CHANGED
@@ -54,7 +54,7 @@ Start the first task:
54
54
 
55
55
  Once you have completed the task, list again:
56
56
  $ pomo list
57
- 0. Fix IE stying issues : 25 minutes
57
+ 0. Fix IE stying issues : 25 minutes
58
58
  1. Destroy IE : 25 minutes
59
59
 
60
60
  Or take a break:
@@ -68,7 +68,7 @@ List only remaining tasks:
68
68
 
69
69
  List only completed tasks:
70
70
  $ pomo list --complete
71
- 0. Fix IE stying issues : 25 minutes
71
+ 0. Fix IE stying issues : 25 minutes
72
72
 
73
73
  At any time mid-task you may terminate pomo via CTRL + C, at which time
74
74
  you may manually complete the task:
data/bin/pomo CHANGED
@@ -228,7 +228,7 @@ command :list do |c|
228
228
  list.tasks.each_with_index do |task, i|
229
229
  next if options.complete && !task.complete?
230
230
  next if options.incomplete && task.complete?
231
- say ' %s %2d. %-45s : %d minutes' % [task.complete? ? '' : ' ', i, task.to_s, task.length]
231
+ say ' %s %2d. %-45s : %d minutes' % [task.complete? ? '' : ' ', i, task.to_s, task.length]
232
232
  total += task.length
233
233
  end
234
234
  say ' ' * 55 + '%d minutes' % total
data/lib/pomo/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Pomo
3
- VERSION = '0.4.0'
3
+ VERSION = '0.5.0'
4
4
  end
data/pomo.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{pomo}
5
- s.version = "0.4.0"
5
+ s.version = "0.5.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk"]
9
- s.date = %q{2009-11-23}
9
+ s.date = %q{2010-01-14}
10
10
  s.default_executable = %q{pomo}
11
11
  s.description = %q{Pomodoro time management for the command-line}
12
12
  s.email = %q{tj@vision-media.ca}
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: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-23 00:00:00 -08:00
12
+ date: 2010-01-14 00:00:00 -08:00
13
13
  default_executable: pomo
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency