thirteen_f 0.5.8 → 0.5.9
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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/thirteen_f/position.rb +8 -6
- data/lib/thirteen_f/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 369e8186185983d60f194d55ddddd7dbd46d12d9e981023e5ed7043b090a6115
|
|
4
|
+
data.tar.gz: 5d0a4e7108e254484cb2d1c86a0c2a6a011e29619fcf1f6cb1c3f6cab53027f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7f33972184bab82574256bf799581a2fbc87c8c9f8a02076345d45d0934d189812fc6b8df9905ab3474d6a2582470400e85cc985cd9b28c75d0eb60984e62cb
|
|
7
|
+
data.tar.gz: 7a36382d29fc2a22a2535578debfd34fb35755d94333ee973402808b4fd87078673d3d006d994cfa75545f3d97a43729aae9e485d080526b4f78a7b3bfaa5e11
|
data/Gemfile.lock
CHANGED
data/lib/thirteen_f/position.rb
CHANGED
|
@@ -3,25 +3,27 @@
|
|
|
3
3
|
class ThirteenF
|
|
4
4
|
class Position
|
|
5
5
|
attr_reader :name_of_issuer, :title_of_class, :cusip, :value_in_thousands,
|
|
6
|
-
:shares_or_principal_amount_type, :shares_or_principal_amount,
|
|
7
|
-
:investment_discretion, :other_managers, :voting_authority,
|
|
6
|
+
:shares_or_principal_amount_type, :shares_or_principal_amount,
|
|
7
|
+
:put_or_call, :investment_discretion, :other_managers, :voting_authority,
|
|
8
|
+
:filing, :time_accepted
|
|
8
9
|
|
|
9
10
|
def self.from_xml_filing(filing)
|
|
10
11
|
return nil unless filing.table_xml_url
|
|
11
12
|
from_xml_url(filing.table_xml_url, filing: filing)
|
|
12
13
|
end
|
|
13
14
|
|
|
14
|
-
def self.from_xml_url(table_xml_url, filing: nil)
|
|
15
|
+
def self.from_xml_url(table_xml_url, filing: nil, time_accepted: nil)
|
|
15
16
|
xml_doc = SecRequest.get table_xml_url, response_type: :xml
|
|
16
17
|
xml_doc.search("//infoTable").map do |info_table|
|
|
17
|
-
position = new filing: filing
|
|
18
|
+
position = new filing: filing, time_accepted: time_accepted
|
|
18
19
|
position.attributes_from_info_table(info_table)
|
|
19
20
|
position
|
|
20
21
|
end
|
|
21
22
|
end
|
|
22
23
|
|
|
23
|
-
def initialize(filing: nil)
|
|
24
|
+
def initialize(filing: nil, time_accepted: nil)
|
|
24
25
|
@filing = filing
|
|
26
|
+
@time_accepted = time_accepted
|
|
25
27
|
end
|
|
26
28
|
|
|
27
29
|
def attributes_from_info_table(info_table)
|
|
@@ -54,7 +56,7 @@ class ThirteenF
|
|
|
54
56
|
# quarter ending December 31, 2022, and for any other preceding or
|
|
55
57
|
# succeeding calendar quarter), must use the updated Form 13F.
|
|
56
58
|
def set_value_to_thousands(text)
|
|
57
|
-
before_change =
|
|
59
|
+
before_change = time_accepted < Date.parse('2023-01-03')
|
|
58
60
|
if before_change
|
|
59
61
|
to_float(text)
|
|
60
62
|
else
|
data/lib/thirteen_f/version.rb
CHANGED