checkoff 0.33.0 → 0.33.2

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: 7ed5d24d3a8427823475fd7d78e6eacc21a64c4175426ae364f71afbf620397a
4
- data.tar.gz: f939dfe4c84a35d9676031109ac8e228909f6513e8e84c359554cea358f657a8
3
+ metadata.gz: 8c74131c5dd1f56f483b52128f4ac3c0d1304576b481e2cea2aad9f28d01f2b3
4
+ data.tar.gz: 7dcb104958ab87aa737499150f5aee4fd296b188ff9198101ca5bc335d22dd15
5
5
  SHA512:
6
- metadata.gz: 9e5fec3e7e8f37f9ce62d51886267c8a255f9f74da2be5d0136001eb22a95abfd7aacb7c450a8a6fa33ff0b6dc1c8ded7ce36c309237f7c9f8ca9ce5a6a64a9c
7
- data.tar.gz: 6f55722a42e2b2e3843b28c8e8bbdcd919463b704fb0e8504576fa7af57f50858d6227da357d5ea87a0f641c023c3c78632743b01d8417d4623962a3b1203b1c
6
+ metadata.gz: 0d0718202558976acbe871c7d20e12baa40a2b1145f79c9d66236c43dacc0b97d866cad534fb0d366a91227c4925baefb2f4b8ca7c14c7b9673bdddd28f7260c
7
+ data.tar.gz: b5c45338160d7d87a0451d3a31ef515962ad932dd6b1dd38efc32bacd5710a15648056ef5409aea2ee7ea162b862140bde175622308f41a40584762919345b10
data/Gemfile.lock CHANGED
@@ -12,7 +12,7 @@ GIT
12
12
  PATH
13
13
  remote: .
14
14
  specs:
15
- checkoff (0.33.0)
15
+ checkoff (0.33.2)
16
16
  activesupport
17
17
  asana (> 0.10.0)
18
18
  cache_method
@@ -22,7 +22,7 @@ PATH
22
22
  GEM
23
23
  remote: https://rubygems.org/
24
24
  specs:
25
- activesupport (7.0.4.2)
25
+ activesupport (7.0.4.3)
26
26
  concurrent-ruby (~> 1.0, >= 1.0.2)
27
27
  i18n (>= 1.6, < 2)
28
28
  minitest (>= 5.1)
@@ -40,7 +40,7 @@ GEM
40
40
  concurrent-ruby
41
41
  childprocess (4.1.0)
42
42
  coderay (1.1.3)
43
- concurrent-ruby (1.1.10)
43
+ concurrent-ruby (1.2.2)
44
44
  crack (0.4.5)
45
45
  rexml
46
46
  dalli (3.2.4)
@@ -89,7 +89,7 @@ GEM
89
89
  mixlib-config (>= 2.2.1, < 4)
90
90
  mixlib-shellout
91
91
  method_source (1.0.0)
92
- minitest (5.17.0)
92
+ minitest (5.18.0)
93
93
  minitest-profile (0.0.2)
94
94
  minitest-reporters (1.5.0)
95
95
  ansi
@@ -122,7 +122,7 @@ GEM
122
122
  coderay (~> 1.1)
123
123
  method_source (~> 1.0)
124
124
  public_suffix (5.0.0)
125
- rack (3.0.4.1)
125
+ rack (3.0.6.1)
126
126
  rainbow (3.1.1)
127
127
  rake (13.0.3)
128
128
  regexp_parser (2.6.0)
@@ -27,7 +27,7 @@ module Checkoff
27
27
  def client
28
28
  @client ||= @asana_client_class.new do |c|
29
29
  c.authentication :access_token, @config.fetch(:personal_access_token)
30
- c.default_headers 'asana-enable' => 'new_project_templates,new_user_task_lists,new_memberships'
30
+ c.default_headers 'asana-enable' => 'new_project_templates,new_user_task_lists,new_memberships,new_goal_memberships'
31
31
  end
32
32
  end
33
33
 
@@ -29,7 +29,7 @@ module Checkoff
29
29
  # pulls a Hash of subtasks broken out by section
30
30
  def by_section(tasks)
31
31
  current_section = nil
32
- by_section = {}
32
+ by_section = { nil => [] }
33
33
  tasks.each do |task|
34
34
  current_section, by_section = file_task_by_section(current_section,
35
35
  by_section, task)
@@ -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.33.0'
6
+ VERSION = '0.33.2'
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.33.0
4
+ version: 0.33.2
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-03-02 00:00:00.000000000 Z
11
+ date: 2023-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport