in the method read_attributes_from_file we have @parser_options blank given this code:
results = CsvMapper.import("#{Rails.root.to_s}/lib/imported.csv") do
delimited_by ";"
map_to User
after_row lambda{ |row, user| user.save }
read_attributes_from_file
end
I expect at least the :col_sep options to be set. Am I doing something wrong?