todo-jsonl 1.0.5 → 1.0.6
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/todo.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a12de5f4f64f3d33b1168b0c39dc69335435ce4229dea4855c46aa70ccc7b0a3
|
4
|
+
data.tar.gz: '018b97ef5b26f06143955d7cef8cdfd92c8dec7932b64a20721636e4a1800f8d'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acc30afd6f1d97e6f3752ec1b0350a73c61c350490836d85c5aa308312f2337ecfb0391ed43d90fec7953e4611af27b7e90559f57cd8fc078b65a924a55fb473
|
7
|
+
data.tar.gz: 834d2ff05757b86babd4a8b640f37b0516a54d6f76941aaaad9cbab525c3c33c0b6080eb9caf432a04b959a33344e3c51b45db2272203ed0898bf446e5bea453
|
data/bin/todo.rb
CHANGED
@@ -177,6 +177,7 @@ class Todo
|
|
177
177
|
next_7_days = (0..6).map { |day| @today + day }
|
178
178
|
@due_date_days = next_7_days.map { |day| day.strftime('%A').downcase }
|
179
179
|
due_dates_for_queries = next_7_days.map { |day| day.strftime(DATE_FORMAT) }
|
180
|
+
recent_date = (@today - 7).strftime(DATE_FORMAT)
|
180
181
|
@queries = {
|
181
182
|
':active' => lambda { |task| /(new|started|blocked)/.match(task[:state]) },
|
182
183
|
':done' => lambda { |task| 'done' == task[:state] },
|
@@ -190,7 +191,8 @@ class Todo
|
|
190
191
|
':tomorrow' => lambda { |task| due_dates_for_queries[1] == task[:due] },
|
191
192
|
':next7days' => lambda { |task| /(#{due_dates_for_queries.join('|')})/.match(task[:due]) },
|
192
193
|
':overdue' => lambda { |task| task[:due] && task[:due] < due_dates_for_queries[0] },
|
193
|
-
':due' => lambda { |task| task[:due] }
|
194
|
+
':due' => lambda { |task| task[:due] },
|
195
|
+
':recent' => lambda { |task| recent_date <= task[:modified] }
|
194
196
|
}
|
195
197
|
end
|
196
198
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: todo-jsonl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabor Bata
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -32,7 +32,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
32
32
|
requirements:
|
33
33
|
- - ">="
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version:
|
35
|
+
version: 2.5.0
|
36
36
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|