Sha256: 6870277c774f85bad9528d70b8c3c8715b7defeefd003252c301da37efbb03cd
Contents?: true
Size: 784 Bytes
Versions: 35
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/feeds" module Renalware module Feeds module Files module Practices class CountryMap UK_COUNTRIES = [ "ENGLAND", "WALES", "SCOTLAND", "NORTHERN IRELAND" ].freeze class Country include Virtus.model attribute :region attribute :country end def map(country) return if country.blank? if UK_COUNTRIES.include?(country.upcase.strip) Country.new(country: "United Kingdom", region: country.strip.titleize) else Country.new(country: country) end end end end end end end
Version data entries
35 entries across 35 versions & 1 rubygems