checkoff 0.26.0 → 0.26.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1adcf7ca7bea1514f07f234a4952e550afeb47be68882a631d26b88231839ec4
4
- data.tar.gz: e2d86531a6e256cbfb9315199b529d6e587263dc6a750c6ab3a28faa8e1f0b12
3
+ metadata.gz: 10a2b886559bd9a77cdf03a309825250a99c4e03c251f0c1699b9941aef09e30
4
+ data.tar.gz: cab6c6505b28ee63b79c8b6765efc2401d10f4d4ec53b6b86791283a87f5a065
5
5
  SHA512:
6
- metadata.gz: 636615e7e3b49a763e71c867718b6441bde385eb30533263c67030cb9b6febd7a3c233087daec5c30e2ec1e2bf24d0fe97c7480faf6feb18baf121c140e14642
7
- data.tar.gz: ab00d105d5f79e402c2030a4a982fe3b863270c9477ffa4c4fccf686d79a1280ab3a20561be72311711ee481544a206f2af9785eaaab5db3d3646a466f6f888d
6
+ metadata.gz: e170ab3b7c20cdf9ccb0f6fc89df6277c5bebecaa1da242f58ddeab3dbedc955e097307ad23c11b88d368ae8aeb5fa73e6c0584a05aeaa335232ec753b7235b7
7
+ data.tar.gz: 6ff4dcbeeaa90e46fa67578c44ce68f790de5569b5a3a19c6d7ebf3a9181aa566921b31f4a9afb0504292a274ce4e51c0b5cb0a8480d0be75b435493f4a687dc
data/Gemfile.lock CHANGED
@@ -12,7 +12,7 @@ GIT
12
12
  PATH
13
13
  remote: .
14
14
  specs:
15
- checkoff (0.26.0)
15
+ checkoff (0.26.1)
16
16
  activesupport
17
17
  asana (> 0.10.0)
18
18
  cache_method
@@ -100,8 +100,15 @@ module Checkoff
100
100
  raise "Teach me how to handle these remaining keys for #{variant_key}: #{remaining_params}"
101
101
  end
102
102
 
103
- empty_task_selector = []
104
- [{ "custom_fields.#{gid}.is_set" => 'false' }, empty_task_selector]
103
+ api_params = { "custom_fields.#{gid}.is_set" => 'false' }
104
+ # As of 2023-02, the 'is_set' => 'false' seems to not do
105
+ # the intuitive thing on multi-select fields; it either
106
+ # operates as a no-op or operates the same as 'true'; not
107
+ # sure.
108
+ #
109
+ # Let's handle those with a filter afterwards.
110
+ task_selector = [:nil?, [:custom_field_gid_value, gid]]
111
+ [api_params, task_selector]
105
112
  end
106
113
  end
107
114
 
@@ -17,6 +17,21 @@ module Checkoff
17
17
  object.is_a?(Array) && !object.empty? && [fn_name, fn_name.to_s].include?(object[0])
18
18
  end
19
19
 
20
+ def pull_custom_field_or_raise(task, custom_field_gid)
21
+ custom_fields = task.custom_fields
22
+ if custom_fields.nil?
23
+ raise "Could not find custom_fields under task (was 'custom_fields' included in 'extra_fields'?)"
24
+ end
25
+
26
+ matched_custom_field = custom_fields.find { |data| data.fetch('gid') == custom_field_gid }
27
+ if matched_custom_field.nil?
28
+ raise "Could not find custom field with gid #{custom_field_gid} " \
29
+ "in task #{task.gid} with custom fields #{custom_fields}"
30
+ end
31
+
32
+ matched_custom_field
33
+ end
34
+
20
35
  attr_reader :task_selector
21
36
  end
22
37
 
@@ -91,6 +106,22 @@ module Checkoff
91
106
  end
92
107
  end
93
108
 
109
+ # :custom_field_gid_value function
110
+ class CustomFieldGidValueFunctionEvaluator < FunctionEvaluator
111
+ def matches?
112
+ fn?(task_selector, :custom_field_gid_value)
113
+ end
114
+
115
+ def evaluate_arg?(_index)
116
+ false
117
+ end
118
+
119
+ def evaluate(task, custom_field_gid)
120
+ custom_field = pull_custom_field_or_raise(task, custom_field_gid)
121
+ custom_field['display_value']
122
+ end
123
+ end
124
+
94
125
  # :custom_field_gid_value_contains_any_gid function
95
126
  class CustomFieldGidValueContainsAnyGidFunctionEvaluator < FunctionEvaluator
96
127
  def matches?
@@ -109,20 +140,6 @@ module Checkoff
109
140
 
110
141
  private
111
142
 
112
- def pull_custom_field_or_raise(task, custom_field_gid)
113
- custom_fields = task.custom_fields
114
- if custom_fields.nil?
115
- raise "Could not find custom_fields under task (was 'custom_fields' included in 'extra_fields'?)"
116
- end
117
-
118
- matched_custom_field = custom_fields.find { |data| data.fetch('gid') == custom_field_gid }
119
- if matched_custom_field.nil?
120
- raise "Could not find custom field with gid #{custom_field_gid} in #{task.gid} with #{custom_fields}"
121
- end
122
-
123
- matched_custom_field
124
- end
125
-
126
143
  def pull_enum_values(custom_field)
127
144
  resource_subtype = custom_field.fetch('resource_subtype')
128
145
  case resource_subtype
@@ -164,6 +181,7 @@ module Checkoff
164
181
  NilPFunctionEvaluator,
165
182
  TagPFunctionEvaluator,
166
183
  CustomFieldValueFunctionEvaluator,
184
+ CustomFieldGidValueFunctionEvaluator,
167
185
  CustomFieldGidValueContainsAnyGidFunctionEvaluator,
168
186
  AndFunctionEvaluator,
169
187
  ].freeze
@@ -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.26.0'
6
+ VERSION = '0.26.1'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: checkoff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.26.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-29 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport