Class: Edgar::DataObjects::TenK
- Inherits:
-
Base
- Object
- Base
- Edgar::DataObjects::TenK
show all
- Defined in:
- lib/edgar/data_objects.rb
Overview
Wraps a 10-K annual filing with section accessors.
Instance Attribute Summary
Attributes inherited from Base
#filing
Instance Method Summary
collapse
Methods inherited from Base
#accession_number, #company_name, #filing_date, #form_type, #initialize, #to_s
Instance Method Details
#business ⇒ Object
41
42
43
|
# File 'lib/edgar/data_objects.rb', line 41
def business
items["1"]
end
|
#exhibits ⇒ Object
53
54
55
|
# File 'lib/edgar/data_objects.rb', line 53
def exhibits
@filing.exhibits
end
|
#financial_statements ⇒ Object
49
50
51
|
# File 'lib/edgar/data_objects.rb', line 49
def financial_statements
items["8"]
end
|
#items ⇒ Object
37
38
39
|
# File 'lib/edgar/data_objects.rb', line 37
def items
@filing.sections
end
|
#risk_factors ⇒ Object
45
46
47
|
# File 'lib/edgar/data_objects.rb', line 45
def risk_factors
items["1A"]
end
|