checkoff 0.90.0 → 0.92.0
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/GLOSSARY.md +3 -3
- data/Gemfile.lock +1 -1
- data/lib/checkoff/internal/selector_classes/task.rb +3 -3
- data/lib/checkoff/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: 9b750814d7176f6d66ffefaf0c99995dc1c2d6f44b0dcc99d68f777b84f44941
|
|
4
|
+
data.tar.gz: bb0045530c18cf158a8d255818640a6130eb392f2218c49d2da8c2f70e8197de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10dccc258a5a948f91cee8ff8ee0eef696dfb0a7e5ae92ae07116f26e65364dee2ebf1f89c6fcc0e17fc4ea7c83a89fda89cdab91586c747a54eef1864a7dc74
|
|
7
|
+
data.tar.gz: 5aead20f2cf559538115b8f37c394245dd10906603d307a4f4c7879696cd8e03ef40f23b3da7b898f14ae06f48b55136834b6a3bb7420486f7c5915e01ba1a22
|
data/GLOSSARY.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# Glossary
|
|
2
2
|
|
|
3
|
-
* ready
|
|
3
|
+
* ready: See tasks.rb#task_ready?. Indicates a task is ready for
|
|
4
4
|
a person to work on it. This is subtly different than what is used
|
|
5
5
|
by Asana to mark a date as red/green! A task is ready if it is not
|
|
6
6
|
dependent on an incomplete task and one of these is true:
|
|
7
7
|
|
|
8
8
|
* start is null and due on is today
|
|
9
|
-
* start is null and due at is
|
|
9
|
+
* start is null and due at is before now
|
|
10
10
|
* start on is today
|
|
11
|
-
* start at is
|
|
11
|
+
* start at is before now
|
data/Gemfile.lock
CHANGED
|
@@ -114,9 +114,9 @@ module Checkoff
|
|
|
114
114
|
end
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
-
# :
|
|
118
|
-
class
|
|
119
|
-
FUNCTION_NAME = :
|
|
117
|
+
# :ready_between_n_days function
|
|
118
|
+
class ReadyBetweenRelativePFunctionEvaluator < FunctionEvaluator
|
|
119
|
+
FUNCTION_NAME = :ready_between_relative
|
|
120
120
|
|
|
121
121
|
def matches?
|
|
122
122
|
fn?(selector, FUNCTION_NAME)
|
data/lib/checkoff/version.rb
CHANGED