Module: KktShoppe::AssociatedCountries
- Included in:
- DeliveryServicePrice, TaxRate
- Defined in:
- lib/kkt_shoppe/associated_countries.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.included(base) ⇒ Object
4 5 6 7 |
# File 'lib/kkt_shoppe/associated_countries.rb', line 4 def self.included(base) base.serialize :country_ids, Array base.before_validation { self.country_ids = self.country_ids.map(&:to_i).select { |i| i > 0} if self.country_ids.is_a?(Array) } end |