qer 0.2.3 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,15 @@
1
+ == 0.2.5 2010-02-16
2
+ * 1 bugfix:
3
+ * Don't error badly when calling remove with a bad index
4
+
5
+ == 0.2.4 2010-02-15
6
+ * 1 very minor enhancement:
7
+ * remove index from history print.
8
+
9
+ == 0.2.3 2010-02-09
10
+ * 1 bugfix:
11
+ * fixed ruby 1.9 support
12
+
1
13
  == 0.2.2 2010-01-25
2
14
  * 2 bugfixes
3
15
  * Bumping too far back was leaving nil rows
@@ -45,6 +45,8 @@ Commands:
45
45
  `qer bump 5 2` -> bumps index five up to 2
46
46
  clear - Clears the entire list
47
47
  `qer clear`
48
+ clear - Clears the given index without writing to the history file
49
+ `qer clear 2`
48
50
  history - displays list of completed tasks
49
51
  `qer history`
50
52
  help - Prints this message
data/Rakefile CHANGED
@@ -1,25 +1,22 @@
1
- %w[rubygems rake rake/clean fileutils hoe newgem rubigen].each { |f| require f }
1
+ %w[rubygems rake rake/clean fileutils hoe].each { |f| require f }
2
2
  require File.dirname(__FILE__) + '/lib/qer'
3
3
 
4
4
  # Generate all the Rake tasks
5
5
  # Run 'rake -T' to see list of generated tasks (from gem root directory)
6
- $hoe = Hoe.spec('qer') do |p|
7
- p.developer('Josh Kleinpeter', 'josh@kleinpeter.org')
8
- p.developer('Coby Randquist', 'randquistcp@gmail.com')
9
- p.developer('Jacob Dunphy', 'jacob.dunphy@gmail.com')
10
- p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
11
- p.rubyforge_name = p.name
12
- p.description = "Qer is an easy command-line todo list."
13
- p.summary = "Just type `qer --help` to get started."
14
- p.extra_dev_deps = [
15
- ['shoulda','= 2.10.1'],
16
- ['newgem', ">= #{::Newgem::VERSION}"]
6
+ $hoe = Hoe.spec('qer') do
7
+ developer('Josh Kleinpeter', 'josh@kleinpeter.org')
8
+ developer('Coby Randquist', 'randquistcp@gmail.com')
9
+ developer('Jacob Dunphy', 'jacob.dunphy@gmail.com')
10
+ self.changes = paragraphs_of("History.txt", 0..1).join("\n\n")
11
+ self.rubyforge_name = name
12
+ self.description = "Qer is an easy command-line todo list."
13
+ self.summary = "Just type `qer --help` to get started."
14
+ self.extra_dev_deps = [
15
+ ['shoulda','> 2.10.1'],
17
16
  ]
18
17
 
19
- p.clean_globs |= %w[**/.DS_Store tmp *.log]
20
- path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
21
- p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
22
- p.rsync_args = '-av --delete --ignore-errors'
18
+ self.clean_globs |= %w[**/.DS_Store tmp *.log]
19
+ self.rsync_args = '-av --delete --ignore-errors'
23
20
  end
24
21
 
25
22
  require 'newgem/tasks' # load /tasks/*.rake
data/lib/qer.rb CHANGED
@@ -3,7 +3,7 @@ $:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) ||
3
3
  require 'time'
4
4
  require 'qer/todo'
5
5
  module Qer
6
- VERSION = '0.2.3'
6
+ VERSION = '0.2.6'
7
7
  end
8
8
 
9
9
  class Time
@@ -24,6 +24,6 @@ class Time
24
24
  when 86400..525599 then "~ #{(distance_in_minutes / 43200).round} months ago"
25
25
  when 525600..1051199 then "~ 1 year ago"
26
26
  else "> #{(distance_in_minutes / 525600).round} years ago"
27
- end
28
- end
27
+ end
28
+ end
29
29
  end
@@ -22,18 +22,28 @@ module Qer
22
22
  end
23
23
 
24
24
  def remove(index)
25
- returning(item = self.queue.delete_at(index)) do
25
+ if item = self.queue.delete_at(index)
26
26
  self.history << [Time.now.to_s, item[0], item[1]]
27
27
  write_history
28
28
  write
29
- print "Removed #{item.last}"
29
+ print "Removed: #{item.last}"
30
+ item
31
+ else
32
+ print "Provided index does not exist."
30
33
  end
31
34
  end
32
35
 
33
- def clear
34
- self.queue = []
35
- write
36
- print "ToDo list cleared"
36
+ def clear(index = nil)
37
+ unless index.nil?
38
+ item = self.queue.delete_at(index.to_i)
39
+ write
40
+ print "Removed #{item.last}"
41
+ item
42
+ else
43
+ self.queue = []
44
+ write
45
+ print "ToDo list cleared"
46
+ end
37
47
  end
38
48
 
39
49
  def pop
@@ -43,7 +53,7 @@ module Qer
43
53
  def push(item)
44
54
  self.queue.unshift([Time.now.to_s, item])
45
55
  write
46
- print
56
+ print "Pushed to the top: #{item}"
47
57
  end
48
58
 
49
59
  def bump(index, new_index = 0)
@@ -61,7 +71,7 @@ module Qer
61
71
  def print_history(string = nil)
62
72
  dump self.history, string, history_title
63
73
  end
64
-
74
+
65
75
  def write
66
76
  file("w+") {|f| Marshal.dump(self.queue, f) }
67
77
  end
@@ -86,11 +96,6 @@ module Qer
86
96
  self.queue.size
87
97
  end
88
98
 
89
- def returning(thing)
90
- yield
91
- thing
92
- end
93
-
94
99
  def width
95
100
  80
96
101
  end
@@ -113,7 +118,7 @@ module Qer
113
118
 
114
119
  def process_line(index, item)
115
120
  return unless item
116
- item.size == 2 ? process_queue_line(index,item) : process_history_line(index,item)
121
+ item.size == 2 ? process_queue_line(index,item) : process_history_line(item)
117
122
  end
118
123
 
119
124
  def process_queue_line(index, item)
@@ -123,11 +128,10 @@ module Qer
123
128
  right.insert(0, left)
124
129
  end
125
130
 
126
- def process_history_line(index, item)
131
+ def process_history_line(item)
127
132
  end_time, time, task = item
128
- left = "(#{index}) #{task}"
129
- right = "#{tf(time)} | #{tf(end_time)}".rjust(width-left.length)
130
- right.insert(0, left)
133
+ right = "#{tf(time)} | #{tf(end_time)}".rjust(width-task.length)
134
+ right.insert(0, task)
131
135
  end
132
136
 
133
137
  def dump(queue, string, label = title)
@@ -148,15 +152,24 @@ module Qer
148
152
 
149
153
  def command(args)
150
154
  case(args.shift)
151
- when /^a(dd)?/ : self.add(args.join(" ")) # qer add Some task 1
152
- when /^r(emove)?/ : self.remove(args.shift.to_i) # qer remove 0
153
- when /^pu(sh)?/ : self.push(args.join(" ")) # qer push Some task 2
154
- when /^po(p)?/ : self.pop # qer pop
155
- when /^b(ump)?/ : self.bump(*args.first(2)) # qer bump
156
- when /^clear/ : self.clear # qer clear
157
- when /.*help/ : self.help # qer help
158
- when /^h(istory)?/ : self.print_history # qer history
159
- else self.print # qer
155
+ when /^a(dd)?/
156
+ self.add(args.join(" ")) # qer add Some task 1
157
+ when /^r(emove)?/
158
+ self.remove(args.shift.to_i) # qer remove 0
159
+ when /^pu(sh)?/
160
+ self.push(args.join(" ")) # qer push Some task 2
161
+ when /^po(p)?/
162
+ self.pop # qer pop
163
+ when /^b(ump)?/
164
+ self.bump(*args.first(2)) # qer bump
165
+ when /^clear/
166
+ self.clear(args.shift) # qer clear
167
+ when /.*help/
168
+ self.help # qer help
169
+ when /^h(istory)?/
170
+ self.print_history # qer history
171
+ else
172
+ self.print # qer
160
173
  end
161
174
  end
162
175
 
@@ -182,6 +195,8 @@ Commands:
182
195
  `qer bump 5 2` -> bumps index five up to 2
183
196
  clear - Clears the entire list
184
197
  `qer clear`
198
+ clear - Clears the given index without writing to history file
199
+ `qer clear 3`
185
200
  h(istory) - displays list of completed tasks
186
201
  `qer history`
187
202
  help - Prints this message
@@ -4,3 +4,16 @@ require 'shoulda'
4
4
  require File.dirname(__FILE__) + '/../lib/qer'
5
5
 
6
6
  Qer::ToDo.quiet = true
7
+
8
+ class Test::Unit::TestCase
9
+
10
+ def assert_output matcher
11
+ assert_match matcher, read_stdout
12
+ end
13
+
14
+ def read_stdout
15
+ @output.rewind
16
+ @output.read
17
+ end
18
+
19
+ end
@@ -1,251 +1,292 @@
1
- require File.dirname(__FILE__) + '/test_helper.rb'
2
-
3
- class TestQer < Test::Unit::TestCase
4
-
5
- def setup
6
- @file = File.join(File.dirname(__FILE__), 'testqueue.tmp')
7
- File.delete(@file) if File.exists?(@file)
8
- @todo = Qer::ToDo.new(@file)
9
- end
10
-
11
- context "push" do
12
- setup do
13
- @todo.push("Some Task")
14
- end
15
-
16
- should "have one item" do
17
- assert_equal 1, @todo.size
18
- end
19
-
20
- should "have two items" do
21
- @todo.push("Some Other Task")
22
- assert_equal 2, @todo.size
23
- end
24
- end
25
-
26
- context "pop" do
27
- setup do
28
- @todo.push("Some Task")
29
- @todo.push("Some Other Task")
30
- @item = @todo.pop
31
- end
32
-
33
- should "pop the right item" do
34
- assert_equal "Some Other Task", @item[1]
35
- end
36
-
37
- should "have one item" do
38
- assert_equal 1, @todo.size
39
- end
40
- end
41
-
42
- context "add" do
43
- setup do
44
- @todo.add("Some Task")
45
- end
46
-
47
- should "have one item" do
48
- assert_equal 1, @todo.size
49
- end
50
-
51
- should "have two items" do
52
- @todo.add("Some Other Task")
53
- assert_equal 2, @todo.size
54
- end
55
- end
56
-
57
- context "remove" do
58
- setup do
59
- @todo.add("Some Task")
60
- @todo.add("Some Other Task")
61
- @item = @todo.remove(0)
62
- end
63
-
64
- should "remove the right item" do
65
- assert_equal "Some Task", @item[1]
66
- end
67
-
68
- should "have one item" do
69
- assert_equal 1, @todo.size
70
- end
71
- end
72
-
73
- context "clear" do
74
- setup do
75
- @todo.add("Some Task")
76
- @todo.add("Some Other Task")
77
- @todo.clear
78
- end
79
-
80
- should "have one item" do
81
- assert_equal 0, @todo.size
82
- end
83
- end
84
-
85
-
86
- context "bump" do
87
- setup do
88
- @todo.add("first")
89
- @todo.add("second")
90
- @todo.add("third")
91
- end
92
-
93
- should "be able to bump to the top" do
94
- @todo.bump(2)
95
- assert_equal "third", @todo.queue.first.last
96
- end
97
-
98
- should "be able to bump to a specific location" do
99
- @todo.bump(2,1)
100
- assert_equal "third", @todo.queue[1].last
101
- end
1
+ require File.dirname(__FILE__) + '/test_helper.rb'
2
+
3
+ class TestQer < Test::Unit::TestCase
4
+
5
+ def setup
6
+ @file = File.join(File.dirname(__FILE__), 'testqueue.tmp')
7
+ File.delete(@file) if File.exists?(@file)
8
+ @todo = Qer::ToDo.new(@file)
9
+ end
10
+
11
+ context "push" do
12
+ setup do
13
+ @todo.push("Some Task")
14
+ end
15
+
16
+ should "have one item" do
17
+ assert_equal 1, @todo.size
18
+ end
19
+
20
+ should "have two items" do
21
+ @todo.push("Some Other Task")
22
+ assert_equal 2, @todo.size
23
+ end
24
+ end
25
+
26
+ context "pop" do
27
+ setup do
28
+ @todo.push("Some Task")
29
+ @todo.push("Some Other Task")
30
+ @item = @todo.pop
31
+ end
32
+
33
+ should "pop the right item" do
34
+ assert_equal "Some Other Task", @item[1]
35
+ end
36
+
37
+ should "have one item" do
38
+ assert_equal 1, @todo.size
39
+ end
40
+ end
41
+
42
+ context "add" do
43
+ setup do
44
+ @todo.add("Some Task")
45
+ end
46
+
47
+ should "have one item" do
48
+ assert_equal 1, @todo.size
49
+ end
50
+
51
+ should "have two items" do
52
+ @todo.add("Some Other Task")
53
+ assert_equal 2, @todo.size
54
+ end
55
+ end
56
+
57
+ context "remove" do
58
+ setup do
59
+ @todo.add("Some Task")
60
+ @todo.add("Some Other Task")
61
+ @item = @todo.remove(0)
62
+ end
63
+
64
+ should "remove the right item" do
65
+ assert_equal "Some Task", @item[1]
66
+ end
67
+
68
+ should "have one item" do
69
+ assert_equal 1, @todo.size
70
+ end
71
+
72
+ should "not error out when an invalid index is removed" do
73
+ assert_nothing_raised {
74
+ @todo.remove(12)
75
+ }
76
+ end
77
+ end
78
+
79
+ context "clear all" do
80
+ setup do
81
+ @todo.add("Some Task")
82
+ @todo.add("Some Other Task")
83
+ @todo.clear
84
+ end
85
+
86
+ should "have no items" do
87
+ assert_equal 0, @todo.size
88
+ end
89
+ end
90
+
91
+ context "clear individual item" do
92
+ setup do
93
+ @todo.add("Some Task")
94
+ @todo.add("Some Other Task")
95
+ @item = @todo.clear(0)
96
+ end
97
+
98
+ should "have the right item left" do
99
+ assert_equal "Some Task", @item[1]
100
+ end
101
+
102
+ should "have one item" do
103
+ assert_equal 1, @todo.size
104
+ end
105
+ end
106
+
107
+ context "bump" do
108
+ setup do
109
+ @todo.add("first")
110
+ @todo.add("second")
111
+ @todo.add("third")
112
+ end
113
+
114
+ should "be able to bump to the top" do
115
+ @todo.bump(2)
116
+ assert_equal "third", @todo.queue.first.last
117
+ end
118
+
119
+ should "be able to bump to a specific location" do
120
+ @todo.bump(2,1)
121
+ assert_equal "third", @todo.queue[1].last
122
+ end
102
123
 
103
124
  should "not leave nil rows in if we bump too far back" do
104
125
  @todo.bump(0,100)
105
126
  assert !@todo.queue.include?(nil)
106
127
  assert_equal "first", @todo.queue.last[1]
107
128
  end
108
-
109
- end
110
-
111
-
112
- context "read" do
113
- setup do
114
- @file = File.join(File.dirname(__FILE__), 'test_queue')
115
- @todo = Qer::ToDo.new(@file)
116
- end
117
-
118
- should "have 5 items" do
119
- assert_equal 5, @todo.size
120
- end
121
- end
122
-
123
- context "write" do
124
- setup do
125
- @todo.add("Some Task")
126
- @todo.add("Some Other Task")
127
- @other_todo = Qer::ToDo.new(@file)
128
- end
129
-
130
- should "have 2 items" do
131
- assert_equal 2, @todo.size
132
- end
133
- end
134
-
135
- context "command" do
136
- setup do
137
- @todo.add("Some Task")
138
- end
139
-
140
- should "add" do
141
- @todo.command(%w(add some stuff))
142
- assert_equal 2, @todo.size
143
- end
144
-
145
- should "remove" do
146
- assert_equal "Some Task", @todo.command(%w(remove 0)).last
147
- assert_equal 0, @todo.size
148
- end
149
-
150
- should "push" do
151
- @todo.command(%w(push some stuff))
152
- assert_equal 2, @todo.size
153
- end
154
-
155
- should "pop" do
156
- assert_equal "Some Task", @todo.command(%w(pop)).last
157
- assert_equal 0, @todo.size
158
- end
159
-
160
- should "clear" do
161
- @todo.command(%w(clear))
162
- assert_equal 0, @todo.size
163
- end
164
-
165
- should "help" do
166
- @todo.command(%w(help))
167
- assert_equal 1, @todo.size
168
- end
169
-
170
- should "print" do
171
- @todo.command([])
172
- assert_equal 1, @todo.size
173
- end
174
-
175
- should "bump" do
176
- @todo.add("second")
177
- @todo.command(%w(bump 1))
178
- assert_equal "second", @todo.queue.first.last
179
-
180
- @todo.add('third')
181
- @todo.command(%w(bump 2 1))
182
- assert_equal "third", @todo.queue[1].last
183
- end
184
- end
185
-
186
-
187
- context "time" do
188
- setup do
189
- @time = Time.now
190
- end
191
-
192
- should "parse time" do
193
- @time = @todo.tf("Fri Oct 02 15:04:59 -0700 2009")
194
- end
195
-
196
- should "have distance in seconds" do
197
- assert_equal "> 1 sec ago", Time.time_ago(@time, @time - 1)
198
- end
199
-
200
- should "have distance in minutes" do
201
- assert_equal "> 5 min ago", Time.time_ago(@time, @time - 5*60)
202
- end
203
-
204
- should "have distance in 1 hour" do
205
- assert_equal "~ 1 hr ago", Time.time_ago(@time, @time - 3600)
206
- end
207
-
208
- should "have distance in hours" do
209
- assert_equal "~ 2 hrs ago", Time.time_ago(@time, @time - 2*3600)
210
- end
211
-
212
- should "have distance in 1 day" do
213
- assert_equal "~ 1 day ago", Time.time_ago(@time, @time - 86400)
214
- end
215
-
216
- should "have distance in days" do
217
- assert_equal "~ 7 days ago", Time.time_ago(@time, @time - 7*86400)
218
- end
219
-
220
- should "have distance in 1 month" do
221
- assert_equal "~ 1 month ago", Time.time_ago(@time, @time - 2592000)
222
- end
223
-
224
- should "have distance in months" do
225
- assert_equal "~ 3 months ago", Time.time_ago(@time, @time - 3*2592000)
226
- end
227
-
228
- should "have distance in 1 year" do
229
- assert_equal "~ 1 year ago", Time.time_ago(@time, @time - 31536000)
230
- end
231
-
232
- should "have distance in years" do
233
- assert_equal "> 99 years ago", Time.time_ago(@time, @time - 99*31536000)
234
- end
235
- end
236
-
237
- context "print" do
238
- should "have width" do
129
+ end
130
+
131
+ context "read" do
132
+ setup do
133
+ @file = File.join(File.dirname(__FILE__), 'test_queue')
134
+ @todo = Qer::ToDo.new(@file)
135
+ end
136
+
137
+ should "have 5 items" do
138
+ assert_equal 5, @todo.size
139
+ end
140
+ end
141
+
142
+ context "write" do
143
+ setup do
144
+ @todo.add("Some Task")
145
+ @todo.add("Some Other Task")
146
+ @other_todo = Qer::ToDo.new(@file)
147
+ end
148
+
149
+ should "have 2 items" do
150
+ assert_equal 2, @todo.size
151
+ end
152
+ end
153
+
154
+ context "command" do
155
+ setup do
156
+ @todo.add("Some Task")
157
+ Qer::ToDo.quiet = false
158
+ @orig_stdout = $stdout.dup
159
+ @output = StringIO.new
160
+ $stdout = @output
161
+ end
162
+
163
+ teardown do
164
+ Qer::ToDo.quiet = true
165
+ $stdout = @orig_stdout
166
+ end
167
+
168
+ should "add" do
169
+ @todo.command(%w(add some stuff))
170
+ assert_equal 2, @todo.size
171
+ assert_output(/Adding: some stuff/)
172
+ end
173
+
174
+ should "remove" do
175
+ assert_equal "Some Task", @todo.command(%w(remove 0)).last
176
+ assert_equal 0, @todo.size
177
+ assert_output "Removed: Some Task"
178
+ end
179
+
180
+ should "not remove bad index" do
181
+ @todo.command(%w(remove 14))
182
+ assert_output "Provided index does not exist."
183
+ end
184
+
185
+ should "push" do
186
+ @todo.command(%w(push some stuff))
187
+ assert_equal 2, @todo.size
188
+ assert_output "Pushed to the top: some stuff"
189
+ end
190
+
191
+ should "pop" do
192
+ assert_equal "Some Task", @todo.command(%w(pop)).last
193
+ assert_equal 0, @todo.size
194
+ assert_output "Removed: Some Task"
195
+ end
196
+
197
+ should "clear" do
198
+ @todo.command(%w(clear))
199
+ assert_equal 0, @todo.size
200
+ assert_output(/list cleared/)
201
+ end
202
+
203
+ should "help" do
204
+ @todo.command(%w(help))
205
+ assert_equal 1, @todo.size
206
+ assert_output(/Help for Qer/)
207
+ end
208
+
209
+ should "print" do
210
+ @todo.command([])
211
+ assert_equal 1, @todo.size
212
+ assert_output "Stuff on the Hopper"
213
+ end
214
+
215
+ should "bump" do
216
+ @todo.add("second")
217
+ @todo.command(%w(bump 1))
218
+ assert_equal "second", @todo.queue.first.last
219
+
220
+ assert_output(/Bumped second to position 0/)
221
+
222
+ @todo.add('third')
223
+ @todo.command(%w(bump 2 1))
224
+ assert_equal "third", @todo.queue[1].last
225
+
226
+ end
227
+ end
228
+
229
+ context "time" do
230
+ setup do
231
+ @time = Time.now
232
+ end
233
+
234
+ should "parse time" do
235
+ @time = @todo.tf("Fri Oct 02 15:04:59 -0700 2009")
236
+ end
237
+
238
+ should "have distance in seconds" do
239
+ assert_equal "> 1 sec ago", Time.time_ago(@time, @time - 1)
240
+ end
241
+
242
+ should "have distance in minutes" do
243
+ assert_equal "> 5 min ago", Time.time_ago(@time, @time - 5*60)
244
+ end
245
+
246
+ should "have distance in 1 hour" do
247
+ assert_equal "~ 1 hr ago", Time.time_ago(@time, @time - 3600)
248
+ end
249
+
250
+ should "have distance in hours" do
251
+ assert_equal "~ 2 hrs ago", Time.time_ago(@time, @time - 2*3600)
252
+ end
253
+
254
+ should "have distance in 1 day" do
255
+ assert_equal "~ 1 day ago", Time.time_ago(@time, @time - 86400)
256
+ end
257
+
258
+ should "have distance in days" do
259
+ assert_equal "~ 7 days ago", Time.time_ago(@time, @time - 7*86400)
260
+ end
261
+
262
+ should "have distance in 1 month" do
263
+ assert_equal "~ 1 month ago", Time.time_ago(@time, @time - 2592000)
264
+ end
265
+
266
+ should "have distance in months" do
267
+ assert_equal "~ 3 months ago", Time.time_ago(@time, @time - 3*2592000)
268
+ end
269
+
270
+ should "have distance in 1 year" do
271
+ assert_equal "~ 1 year ago", Time.time_ago(@time, @time - 31536000)
272
+ end
273
+
274
+ should "have distance in years" do
275
+ assert_equal "> 99 years ago", Time.time_ago(@time, @time - 99*31536000)
276
+ end
277
+ end
278
+
279
+ context "print" do
280
+ should "have width" do
239
281
  assert_equal 80, @todo.width
240
- end
241
-
242
- should "have a title" do
243
- assert_equal @todo.width, @todo.title.size
244
- end
245
-
246
- should "have a horizontal line printer" do
247
- assert_equal @todo.width, @todo.hl.size
248
- end
249
- end
250
-
251
- end
282
+ end
283
+
284
+ should "have a title" do
285
+ assert_equal @todo.width, @todo.title.size
286
+ end
287
+
288
+ should "have a horizontal line printer" do
289
+ assert_equal @todo.width, @todo.hl.size
290
+ end
291
+ end
292
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Kleinpeter
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2010-01-26 00:00:00 -08:00
14
+ date: 2010-03-22 00:00:00 -07:00
15
15
  default_executable:
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
@@ -20,20 +20,10 @@ dependencies:
20
20
  version_requirement:
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
- - - "="
23
+ - - ">"
24
24
  - !ruby/object:Gem::Version
25
25
  version: 2.10.1
26
26
  version:
27
- - !ruby/object:Gem::Dependency
28
- name: newgem
29
- type: :development
30
- version_requirement:
31
- version_requirements: !ruby/object:Gem::Requirement
32
- requirements:
33
- - - ">="
34
- - !ruby/object:Gem::Version
35
- version: 1.5.2
36
- version:
37
27
  - !ruby/object:Gem::Dependency
38
28
  name: hoe
39
29
  type: :development
@@ -42,7 +32,7 @@ dependencies:
42
32
  requirements:
43
33
  - - ">="
44
34
  - !ruby/object:Gem::Version
45
- version: 2.5.0
35
+ version: 2.3.3
46
36
  version:
47
37
  description: Qer is an easy command-line todo list.
48
38
  email: