Method: Identified::HighGroupList#initialize

Defined in:
lib/identified/ssn/high_group_list.rb

#initialize(filename) ⇒ HighGroupList

Returns a new instance of HighGroupList.



8
9
10
11
12
13
# File 'lib/identified/ssn/high_group_list.rb', line 8

def initialize(filename)
  raw_data = File.read(filename)

  @date_effective = parse_date(raw_data)
  @high_groups = parse_high_groups(raw_data)
end