Sha256: a87671c06d1cfa745470dee01824b4d01695a3abc3f47679354d9822246dbaf5
Contents?: true
Size: 653 Bytes
Versions: 35
Compression:
Stored size: 653 Bytes
Contents
module Renalware log "Adding Access Types & Procedures" do file_path = File.join(File.dirname(__FILE__), "access_types_procedures.csv") CSV.foreach(file_path, headers: true) do |row| if row["rr02_code"].present? rr02_code = row["rr02_code"] abbreviation = rr02_code end if row["rr41_code"].present? rr41_code = row["rr41_code"] abbreviation = "#{rr02_code} #{rr41_code}" end Accesses::Type.find_or_create_by!(name: row["name"]) do |type| type.rr02_code = rr02_code type.rr41_code = rr41_code type.abbreviation = abbreviation end end end end
Version data entries
35 entries across 35 versions & 1 rubygems