doing 1.0.51 → 1.0.52
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.
- checksums.yaml +4 -4
- data/bin/doing +4 -2
- data/lib/doing/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab98c4f6aa3c2c5d3ccdb29a7b5f78a5f8adc67d12e9628e81b53316a10bc66c
|
4
|
+
data.tar.gz: dbe47b1b6b15d3d067a34f77b51b5f44b6137bd6f3cd89eccf4dd1909681ad32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31b94d0107fae62ca3f8b791173d3ea36be2ba8a09f6a4c27f1c75ac9f75a3840f83d0ce13eb11ddcaee05d305e35d5f15acd4d285936cf673e34d320b0db8d5
|
7
|
+
data.tar.gz: 48e17f344c27e38c82272906f082ee78dbb7be36fcc66b76de1c784ad2ab845ff54398c73624a83eaa883f5780264eb026c4a9b6443f60af7bbb55e06d5e1bb7
|
data/bin/doing
CHANGED
@@ -461,7 +461,7 @@ command :finish do |c|
|
|
461
461
|
c.flag [:t, :took]
|
462
462
|
|
463
463
|
c.desc 'Finish the last X entries containing TAG. Separate multiple tags with comma (--tag=tag2,tag2)'
|
464
|
-
c.flag [:tag]
|
464
|
+
c.flag [:tag]
|
465
465
|
|
466
466
|
c.desc 'Boolean (AND|OR|NOT) with which to combine multiple tag filters'
|
467
467
|
c.flag [:tag_bool], default_value: 'AND'
|
@@ -493,7 +493,9 @@ command :finish do |c|
|
|
493
493
|
end
|
494
494
|
end
|
495
495
|
|
496
|
-
if options[:tag]
|
496
|
+
if options[:tag].nil?
|
497
|
+
options[:tag] = []
|
498
|
+
else
|
497
499
|
options[:tag] = options[:tag].split(/,/).map {|tag| tag.strip.sub(/^@/, '') }
|
498
500
|
if options[:tag_bool] =~ /^(and|or|not)$/i
|
499
501
|
options[:tag_bool] = options[:tag_bool].upcase
|
data/lib/doing/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.52
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Terpstra
|
@@ -78,20 +78,20 @@ dependencies:
|
|
78
78
|
requirements:
|
79
79
|
- - "~>"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: '2.
|
81
|
+
version: '2.19'
|
82
82
|
- - ">="
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version: 2.
|
84
|
+
version: 2.19.2
|
85
85
|
type: :runtime
|
86
86
|
prerelease: false
|
87
87
|
version_requirements: !ruby/object:Gem::Requirement
|
88
88
|
requirements:
|
89
89
|
- - "~>"
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: '2.
|
91
|
+
version: '2.19'
|
92
92
|
- - ">="
|
93
93
|
- !ruby/object:Gem::Version
|
94
|
-
version: 2.
|
94
|
+
version: 2.19.2
|
95
95
|
- !ruby/object:Gem::Dependency
|
96
96
|
name: haml
|
97
97
|
requirement: !ruby/object:Gem::Requirement
|