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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/todo.rb +3 -1
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b0c251bf65b4b67f7e2650f10b6e898047a8dc1b5fcd89f1ebc364b27334f07
4
- data.tar.gz: 86d3647f960571d3a7b5c9f33c55352a2852c6c193696eee090aeb93854009f8
3
+ metadata.gz: a12de5f4f64f3d33b1168b0c39dc69335435ce4229dea4855c46aa70ccc7b0a3
4
+ data.tar.gz: '018b97ef5b26f06143955d7cef8cdfd92c8dec7932b64a20721636e4a1800f8d'
5
5
  SHA512:
6
- metadata.gz: 1e6a0153c341b7e2f7593cc2cd651e26493ea885718392d237f609c3f7b4035d538a2db20b5ba89b56639d14fafb06e7d225bcb417edf5fd5918e26574122174
7
- data.tar.gz: 47daf98ef96b84241eeca49cbecd2ff33a4ad53663fdcbfaeba1377cabfb504b1273c71a90a462396bcec74e44f2deb4e2f37490bc1ae1a559e889f615946b61
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.5
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-24 00:00:00.000000000 Z
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: '0'
35
+ version: 2.5.0
36
36
  required_rubygems_version: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="