checkoff 0.90.0 → 0.92.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 410b79c565dd4ef51591f63f2b343bd1ad50007b3c2d1ebdac2a899cfe34c001
4
- data.tar.gz: 0aa9cd8e46be9e875257d4ffd47d07e92c23429d0ce2e1dee56994c87c159ac1
3
+ metadata.gz: 9b750814d7176f6d66ffefaf0c99995dc1c2d6f44b0dcc99d68f777b84f44941
4
+ data.tar.gz: bb0045530c18cf158a8d255818640a6130eb392f2218c49d2da8c2f70e8197de
5
5
  SHA512:
6
- metadata.gz: cd376d3f300c78926e488d563ce0defb7accae947699008a633548c0950296c099b5d47c381c31ea52d6cbdd733b0ede9df509443d1581e2acc131da0eb55c35
7
- data.tar.gz: 321b2b110050e218f3229d4f78f8274796cc84973a31937989a6a0b0533313ae6856b49b3a9b863f5ce908a4b1c20e6a60bd491fbe497bbfcd64deccfbd7e0fa
6
+ metadata.gz: 10dccc258a5a948f91cee8ff8ee0eef696dfb0a7e5ae92ae07116f26e65364dee2ebf1f89c6fcc0e17fc4ea7c83a89fda89cdab91586c747a54eef1864a7dc74
7
+ data.tar.gz: 5aead20f2cf559538115b8f37c394245dd10906603d307a4f4c7879696cd8e03ef40f23b3da7b898f14ae06f48b55136834b6a3bb7420486f7c5915e01ba1a22
data/GLOSSARY.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # Glossary
2
2
 
3
- * ready/due: See tasks.rb#task_ready?. Indicates a task is ready for
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 after now
9
+ * start is null and due at is before now
10
10
  * start on is today
11
- * start at is after now
11
+ * start at is before now
data/Gemfile.lock CHANGED
@@ -12,7 +12,7 @@ GIT
12
12
  PATH
13
13
  remote: .
14
14
  specs:
15
- checkoff (0.90.0)
15
+ checkoff (0.92.0)
16
16
  activesupport
17
17
  asana (> 0.10.0)
18
18
  cache_method
@@ -114,9 +114,9 @@ module Checkoff
114
114
  end
115
115
  end
116
116
 
117
- # :due_between_n_days function
118
- class DueBetweenRelativePFunctionEvaluator < FunctionEvaluator
119
- FUNCTION_NAME = :due_between_relative
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)
@@ -3,5 +3,5 @@
3
3
  # Command-line and gem client for Asana (unofficial)
4
4
  module Checkoff
5
5
  # Version of library
6
- VERSION = '0.90.0'
6
+ VERSION = '0.92.0'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: checkoff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.0
4
+ version: 0.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz