Method: Fech::Filing#summary

Defined in:
lib/fech/filing.rb

#summaryHash

Access the summary (second) line of the filing, containing aggregate and top-level information about the filing.

Returns:

  • (Hash)

    a hash that assigns labels to the values of the filing’s summary row



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