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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80f385f29d41b48eed1bd43b20e43519d58bf987a8d96417c5ac2607c4ebefe4
|
|
4
|
+
data.tar.gz: 3f74b22582450a8ea680637037594a9727d5d8f2089c34409bbf20d506918eda
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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'))
|
|
@@ -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
|
data/lib/shelby_arena/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2024-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|