Method: Fech::Filing#header

Defined in:
lib/fech/filing.rb

#header(opts = {}) ⇒ Hash

Access the header (first) line of the filing, containing information about the filing’s version and metadata about the software used to file it.

Returns:

  • (Hash)

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



51
52
53
54
55
# File 'lib/fech/filing.rb', line 51

def header(opts={})
  each_row do |row|
    return parse_row?(row)
  end
end