checkoff 0.29.2 → 0.29.4

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: 0671b953d28c1c2ddd0ffa1afd77aaaab8dd2731bc22cd5ab27f55ef2778e9db
4
- data.tar.gz: 5087bbffedf3c7e668c89b3ead2b8d3238a195b6ff80b7e54a7cfc370f968bac
3
+ metadata.gz: a73a81aadb4e180a59baf5eac5184070a677d791ead8d608f894e71950e03125
4
+ data.tar.gz: '0590cbfeefb9b56600dfd2450e3731ea8472d4efa21b1b8e6adf4719e949425f'
5
5
  SHA512:
6
- metadata.gz: 5a41ca5ec518fd32fd54bcfe49c252f427f6f935cc6a20e30b5597ff1a6cbf4f345eb489f14573b56f45b5ffa178d6269c2e51c9a147e8d74688fe62e82f99bc
7
- data.tar.gz: 4142a71370c94c2f258701b6ffe55e5de00c2a77322bd473031d80f9a81714557a1b8269bdbf1f8bfb676169e3fce367e6381808fea30090397956fe1b4aa608
6
+ metadata.gz: 2459b37ea4a58cc8198ad0d6fa43f772d70e3278ec77254d35471d299b06c5afe00c901f7992e305d3ad392727c35977ac80b977f11dddbb1f1f0c1e4e148804
7
+ data.tar.gz: 90c1d606f7d2babcf8056e3464aa84d5f7994a1adab568f156468462d46acbccd8b52e0119e7a522a8c4b9083f8e9a17a55f05ec333c567223e50b4b8fb92dba
data/Gemfile.lock CHANGED
@@ -12,7 +12,7 @@ GIT
12
12
  PATH
13
13
  remote: .
14
14
  specs:
15
- checkoff (0.29.2)
15
+ checkoff (0.29.4)
16
16
  activesupport
17
17
  asana (> 0.10.0)
18
18
  cache_method
@@ -24,9 +24,9 @@ module Checkoff
24
24
  SHORT_CACHE_TIME = MINUTE
25
25
 
26
26
  def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana),
27
- workspaces: Checkoff::Workspaces.new(config: config),
28
- clients: Checkoff::Clients.new(config: config),
29
- client: clients.client)
27
+ client: Checkoff::Clients.new(config: config).client,
28
+ workspaces: Checkoff::Workspaces.new(config: config,
29
+ client: client))
30
30
  @config = config
31
31
  @workspaces = workspaces
32
32
  @client = client
@@ -18,10 +18,11 @@ module Checkoff
18
18
  attr_reader :projects, :workspaces, :time, :my_tasks
19
19
 
20
20
  def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana),
21
- projects: Checkoff::Projects.new(config: config),
22
- workspaces: Checkoff::Workspaces.new(config: config),
23
- clients: Checkoff::Clients.new(config: config),
24
- client: clients.client,
21
+ client: Checkoff::Clients.new(config: config).client,
22
+ projects: Checkoff::Projects.new(config: config,
23
+ client: client),
24
+ workspaces: Checkoff::Workspaces.new(config: config,
25
+ client: client),
25
26
  time: Time)
26
27
  @projects = projects
27
28
  @workspaces = workspaces
@@ -21,8 +21,7 @@ module Checkoff
21
21
  SHORT_CACHE_TIME = MINUTE
22
22
 
23
23
  def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana),
24
- clients: Checkoff::Clients.new(config: config),
25
- client: clients.client,
24
+ client: Checkoff::Clients.new(config: config).client,
26
25
  tasks: Checkoff::Tasks.new(config: config,
27
26
  client: client))
28
27
  @config = config
@@ -15,9 +15,9 @@ module Checkoff
15
15
  SHORT_CACHE_TIME = MINUTE * 5
16
16
 
17
17
  def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana),
18
- sections: Checkoff::Sections.new(config: config),
19
- clients: Checkoff::Clients.new(config: config),
20
- client: clients.client,
18
+ client: Checkoff::Clients.new(config: config).client,
19
+ sections: Checkoff::Sections.new(config: config,
20
+ client: client),
21
21
  time_class: Time,
22
22
  asana_task: Asana::Resources::Task)
23
23
  @config = config
@@ -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.29.2'
6
+ VERSION = '0.29.4'
7
7
  end
@@ -18,8 +18,7 @@ module Checkoff
18
18
  SHORT_CACHE_TIME = MINUTE
19
19
 
20
20
  def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana),
21
- clients: Checkoff::Clients.new(config: config),
22
- client: clients.client)
21
+ client: Checkoff::Clients.new(config: config).client)
23
22
  @config = config
24
23
  @client = client
25
24
  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.29.2
4
+ version: 0.29.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz