checkoff 0.29.3 → 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: ced71b64a24369d0c0fe302b321d7f1002230d76c8dcdf725f4f638f6123aca2
4
- data.tar.gz: 530c801995de6d17d5dc183edd6211b2c1cf16885bc27be72d9400a9a40eb172
3
+ metadata.gz: a73a81aadb4e180a59baf5eac5184070a677d791ead8d608f894e71950e03125
4
+ data.tar.gz: '0590cbfeefb9b56600dfd2450e3731ea8472d4efa21b1b8e6adf4719e949425f'
5
5
  SHA512:
6
- metadata.gz: 7fc6c123962608a1ec0209112e1c61a71423f7d410e32b464a637a29681cde1ac4d7c7571cfc54b0a6f7647b93d63f23a6284036dcef9ef43517bb68451f57f7
7
- data.tar.gz: 811034e7770c45ccf89b71e29a394a997143ca567d8aa22b1c4be74e69f9f74242fb40045b0598ec5db1c4ef472478a55c6a99a8efc24c7244e98b77a14affaf
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.3)
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
@@ -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.3'
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.3
4
+ version: 0.29.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vince Broz