shelby_arena 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7c3a359d351954ae3f2aa74a9c71b01c7aaf5dcb976463032a76b434d42c6d5
4
- data.tar.gz: 0bc07eccedb05822ee4be620e58b6031f6bd28d895bfad3bf071d8f52485f7fd
3
+ metadata.gz: 80f385f29d41b48eed1bd43b20e43519d58bf987a8d96417c5ac2607c4ebefe4
4
+ data.tar.gz: 3f74b22582450a8ea680637037594a9727d5d8f2089c34409bbf20d506918eda
5
5
  SHA512:
6
- metadata.gz: 6474347ea7f7abd2b9f13ea7bde94199d28f34d409ea41fb63ebbf42a82979fb115d36daaff909815eb70300f1d25257e78f224891e157136a93f136c2ad40ad
7
- data.tar.gz: a23547ea3746dc0af2c348b4b49e3191f43e9d2eac8aa39c94930e7a79a7c51b1354acf231745058741e370643612b5f1b918e168616c522e6517d47f9bc307b
6
+ metadata.gz: 77c191c322fa1801af116a9022055d4b698bded267e1b1639353fd08f0918b1e2eb38482a75434ce03e458da078692bb0177beb19128db70029893ad8b35d8b0
7
+ data.tar.gz: f3fd57c7d900a8f8f7e2c94281b1ac9dd7e25396b1d34c5348004dbd700c6715abd73fb8aca1f208e54050cc7b58851d327fed18ea4788a86c1ed2c5fd826f9e
@@ -1,7 +1,8 @@
1
1
  module ShelbyArena
2
2
  class Client
3
3
  module Fund
4
- def list_funds(options = {})
4
+ def list_funds
5
+ options = {}
5
6
  options[:api_sig] = generate_api_sig(fund_path, options)
6
7
  res = get(fund_path, options.sort)
7
8
  Response::Fund.format(res.dig('FundListResult', 'Funds', 'Fund'))
@@ -43,7 +43,7 @@ module ShelbyArena
43
43
  end
44
44
 
45
45
  def to_boolean(string)
46
- string.downcase == 'true'
46
+ string&.downcase == 'true'
47
47
  end
48
48
 
49
49
  def date_parse(string)
@@ -13,7 +13,12 @@ module ShelbyArena
13
13
  }.freeze
14
14
 
15
15
  def format_single(data)
16
- to_h(MAP, data)
16
+ response = to_h(MAP, data)
17
+ response[:active] = to_boolean(response[:active])
18
+ response[:is_tax_deductible] = to_boolean(response[:is_tax_deductible])
19
+ response[:start_date] = date_parse(response[:start_date])
20
+ response[:end_date] = date_parse(response[:end_date])
21
+ response
17
22
  end
18
23
  end
19
24
  end
@@ -1,3 +1,3 @@
1
1
  module ShelbyArena
2
- VERSION = '0.0.3'.freeze
2
+ VERSION = '0.0.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shelby_arena
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-13 00:00:00.000000000 Z
11
+ date: 2024-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday