Sha256: 13d6d65b0f8cef212d3f1a03e8b02b6d8a266f08a46d183fb2d792c847900e82
Contents?: true
Size: 882 Bytes
Versions: 30
Compression:
Stored size: 882 Bytes
Contents
# frozen_string_literal: true 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
30 entries across 30 versions & 1 rubygems