doing 1.0.48 → 1.0.49
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/doing +3 -3
- data/lib/doing/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 18f254e337c39ad92b9f2e7aa7a30797432c642af248387a448cf1673675ea7a
|
4
|
+
data.tar.gz: 4cd5f972401da1b668b0ae8402d7d463d35c6d0d7d6e3d5de2ad3d2de907ab25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e598cbe3377bda1a868015ea87f14b147b9d77fe02d5b663157b101e6ce988417344b6bf1731fdcb140ba91627e7cc3ab6520ee098811369128f8aa8756eab65
|
7
|
+
data.tar.gz: 8b32c6b73ceab01561163c28b4bc401293daf13d1fdf64ffd7966a907221941010d12b495fbfed2874ecf75f40612287d55ef7804fac3fd88029f4db1f0b1a82
|
data/bin/doing
CHANGED
@@ -410,7 +410,7 @@ command [:done, :did] do |c|
|
|
410
410
|
if options[:r]
|
411
411
|
wwid.tag_last({:tags => ["done"], :count => 1, :section => section, :remove => true })
|
412
412
|
else
|
413
|
-
wwid.tag_last({:tags => ["done"], :count => 1, :section => section, :archive => options[:a], :back => finish_date, :date => options[:
|
413
|
+
wwid.tag_last({:tags => ["done"], :count => 1, :section => section, :archive => options[:a], :back => finish_date, :date => options[:date]})
|
414
414
|
end
|
415
415
|
else
|
416
416
|
if args.length > 0
|
@@ -480,7 +480,7 @@ command :finish do |c|
|
|
480
480
|
raise "Only one argument allowed"
|
481
481
|
elsif args.length == 0 || args[0] =~ /\d+/
|
482
482
|
count = args[0] ? args[0].to_i : 1
|
483
|
-
wwid.tag_last({:tags => ["done"], :count => count, :section => section, :archive => options[:a], :sequential => options[:auto], :date => options[:
|
483
|
+
wwid.tag_last({:tags => ["done"], :count => count, :section => section, :archive => options[:a], :sequential => options[:auto], :date => options[:date], :back => date })
|
484
484
|
else
|
485
485
|
raise "Invalid argument (specify number of recent items to mark @done)"
|
486
486
|
end
|
@@ -563,7 +563,7 @@ command :tag do |c|
|
|
563
563
|
end
|
564
564
|
end
|
565
565
|
|
566
|
-
wwid.tag_last({:tags => tags, :count => count, :section => section, :date => options[:
|
566
|
+
wwid.tag_last({:tags => tags, :count => count, :section => section, :date => options[:date], :remove => options[:r], :autotag => options[:a]})
|
567
567
|
end
|
568
568
|
end
|
569
569
|
end
|
data/lib/doing/version.rb
CHANGED