checkoff 0.125.0 → 0.127.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: 7d9bc29a691be7ae2c20b381918c7cfb70f6898cb1a2a3e1b0e32c960dfbecc5
4
- data.tar.gz: 66ab3e65c5148b079024f18670d105a721c9deb0af0bb98bf0deb67a6001a0b1
3
+ metadata.gz: 012d3342af651a679b9a7d56add94a0e3a908defaacf596d1f9a1573630327e4
4
+ data.tar.gz: 00c71d7578c1347b76d9364ca18dc73247bef830767aa14d8d2ec458b8d7a93d
5
5
  SHA512:
6
- metadata.gz: 546ce907d5b034d2b4087d9e57011920b49a954cddea3f9bff0413b3250f31ad38c57a7af11ce197ca11c16d3ff80cda9cde043c6dbab5f7306aa0b5e73888e9
7
- data.tar.gz: b998dfa7266dcd262a7a6d028400bb013af86c4f30a70c6b1f006b0648f8e2b85f8a59faf4d54afff0105405d6670a2de62661e6fca441f6b87b869868fc83a9
6
+ metadata.gz: 4feed1a46d323588135bf5de72b162cdd0f3f05216fff8c7f9609627ca6514b4cb4a2214675b81ac02adfb51919ca84dbcaa088dddc826c714d4afbe1ad4bb4d
7
+ data.tar.gz: 60c6604bd7228984938f0c439500c2f62572c24fa6dec68c0bb68a823696e06a734cd09717e9faf7421ae530b60b534819c98c75b8fe3ada4f0923e46147a6e0
data/Gemfile.lock CHANGED
@@ -12,7 +12,7 @@ GIT
12
12
  PATH
13
13
  remote: .
14
14
  specs:
15
- checkoff (0.125.0)
15
+ checkoff (0.127.0)
16
16
  activesupport
17
17
  asana (> 0.10.0)
18
18
  cache_method
@@ -90,7 +90,7 @@ module Checkoff
90
90
  # note: task does not need to contain this custom field
91
91
  [{},
92
92
  ['not',
93
- ['custom_field_gid_value_contains_any_gid',
93
+ ['custom_field_gid_value_contains_any_gid?',
94
94
  gid,
95
95
  selected_options]]]
96
96
  end
@@ -106,7 +106,7 @@ module Checkoff
106
106
 
107
107
  [{ "custom_fields.#{gid}.is_set" => 'true' },
108
108
  ['not',
109
- ['custom_field_gid_value_contains_any_gid',
109
+ ['custom_field_gid_value_contains_any_gid?',
110
110
  gid,
111
111
  selected_options]]]
112
112
  end
@@ -121,7 +121,7 @@ module Checkoff
121
121
  selected_options = fetch_solo_param("custom_field_#{gid}.selected_options").split('~')
122
122
 
123
123
  [{ "custom_fields.#{gid}.is_set" => 'true' },
124
- ['custom_field_gid_value_contains_any_gid',
124
+ ['custom_field_gid_value_contains_any_gid?',
125
125
  gid,
126
126
  selected_options]]
127
127
  end
@@ -191,7 +191,7 @@ module Checkoff
191
191
  # matches of a custom field". So I guess we have to
192
192
  # search this manually.
193
193
  api_params = { "custom_fields.#{gid}.is_set" => 'true' }
194
- task_selector = [:custom_field_gid_value_contains_any_gid, gid, selected_options]
194
+ task_selector = [:custom_field_gid_value_contains_any_gid?, gid, selected_options]
195
195
  [api_params, task_selector]
196
196
  end
197
197
  end
@@ -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.125.0'
6
+ VERSION = '0.127.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.125.0
4
+ version: 0.127.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz