Sha256: 945cfbc9bab2cb4a6e48d098fe54931f63a6883883873ac4583865d3b435c16e
Contents?: true
Size: 477 Bytes
Versions: 43
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true module Renalware log "Adding Countries" do return if System::Country.count > 0 file_path = File.join(File.dirname(__FILE__), "countries.csv") countries = [] CSV.foreach(file_path, headers: true) do |row, index| countries << System::Country.new( name: row["name"], alpha2: row["alpha2"], alpha3: row["alpha3"], position: index ) end System::Country.import! countries end end
Version data entries
43 entries across 43 versions & 1 rubygems