checkoff 0.18.0 → 0.18.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/checkoff/task_selectors.rb +1 -11
- 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: e25d521fa8afff414681761d8adde914f090fb3d09f3972301e1b7ce7a96c2ad
|
4
|
+
data.tar.gz: 63d68ed07099060b34ea6ab89cb584782912fd72726ff593491b7c9d9a9f1e94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c2b4ba30b21e9d43c79cf5df47a28f197755c3689209f6ce9fe880802f33da1b8dd899f089160135f3d0536060eee31a33a13a7ce5987cf9108d3acaedf02f8
|
7
|
+
data.tar.gz: f7a5dfaecb8dbb18e7faf5a7d79fe3e76b42836990a1f3ad153378d67abca691d9dfb2047ae3b0565ec5d7fb397ccf5b744f9ea0b0ce346174964d0d96549001
|
data/Gemfile.lock
CHANGED
@@ -6,8 +6,6 @@ require 'forwardable'
|
|
6
6
|
require 'cache_method'
|
7
7
|
require 'json'
|
8
8
|
require_relative 'internal/config_loader'
|
9
|
-
require_relative 'workspaces'
|
10
|
-
require_relative 'clients'
|
11
9
|
|
12
10
|
# https://developers.asana.com/docs/task-selectors
|
13
11
|
|
@@ -21,13 +19,7 @@ module Checkoff
|
|
21
19
|
LONG_CACHE_TIME = MINUTE * 15
|
22
20
|
SHORT_CACHE_TIME = MINUTE
|
23
21
|
|
24
|
-
def initialize(
|
25
|
-
workspaces: Checkoff::Workspaces.new(config: config),
|
26
|
-
clients: Checkoff::Clients.new(config: config),
|
27
|
-
client: clients.client)
|
28
|
-
@workspaces = workspaces
|
29
|
-
@client = client
|
30
|
-
end
|
22
|
+
def initialize(_deps = {}); end
|
31
23
|
|
32
24
|
# @param [Hash<Symbol, Object>] task_selector Filter based on
|
33
25
|
# description. Examples: {tag: 'foo'} {:not {tag: 'foo'} (:tag 'foo')
|
@@ -62,8 +54,6 @@ module Checkoff
|
|
62
54
|
object.is_a?(Array) && !object.empty? && [fn_name, fn_name.to_s].include?(object[0])
|
63
55
|
end
|
64
56
|
|
65
|
-
attr_reader :workspaces, :client
|
66
|
-
|
67
57
|
# bundle exec ./task_selectors.rb
|
68
58
|
# :nocov:
|
69
59
|
class << self
|
data/lib/checkoff/version.rb
CHANGED