Sha256: d710d39167b45682614326622c3376dae95fd211e41e509c8b7f287068f9b15e
Contents?: true
Size: 852 Bytes
Versions: 35
Compression:
Stored size: 852 Bytes
Contents
module Renalware log "Adding PD Bag Types" do file_path = File.join(File.dirname(__FILE__), "bag_types.csv") CSV.foreach(file_path, headers: true) do |row| PD::BagType.find_or_create_by!( description: row["description"], manufacturer: row["manufacturer"], glucose_content: row["glucose_content"], glucose_strength: row["glucose_strength"], amino_acid: row["amino_acid"], icodextrin: row["icodextrin"], low_glucose_degradation: row["low_glucose_degradation"], low_sodium: row["low_sodium"], sodium_content: row["sodium_content"], lactate_content: row["lactate_content"], bicarbonate_content: row["bicarbonate_content"], calcium_content: row["calcium_content"], magnesium_content: row["magnesium_content"] ) end end end
Version data entries
35 entries across 35 versions & 1 rubygems