nightingaleproject / ruby-ije

Library for reading and writing IJE formatted data.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

This library supports reading and writing IJE formatted data. To use it for producing IJE formatted data:

record = IJE::MortalityFormat.new(date_of_death_year: 2010,
                                  state_territory_province_code: "NY",
                                  certificate_number: "000021",
                                  void_flag: 0,
                                  source_flag: 0,
                                  decedant_legal_name_given: "Nobody123",
                                  decedant_legal_name_middle: "X",
                                  decedant_legal_name_last: "Nothing321",
                                  sex: 'U',
                                  social_security_number: '111111111')

ije_output = IJE::MortalityFormat.write([record]) # Takes an array of records

To read IJE formatted data:

IJE::MortalityFormat.read(ije_data) { |record| puts record.social_security_number }

About

Library for reading and writing IJE formatted data.


Languages

Language:Ruby 100.0%