Method: Fech::Filing#summary
- Defined in:
- lib/fech/filing.rb
#summary ⇒ Hash
Access the summary (second) line of the filing, containing aggregate and top-level information about the filing.
60 61 62 63 64 65 |
# File 'lib/fech/filing.rb', line 60 def summary each_row_with_index do |row, index| next if index == 0 return parse_row?(row) end end |