Class: Spree::Country

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/spree/country.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.states_required_by_country_idObject



8
9
10
11
12
# File 'app/models/spree/country.rb', line 8

def self.states_required_by_country_id
  states_required = Hash.new(true)
  all.each { |country| states_required[country.id.to_s]= country.states_required }
  states_required
end

Instance Method Details

#<=>(other) ⇒ Object



14
15
16
# File 'app/models/spree/country.rb', line 14

def <=>(other)
  name <=> other.name
end

#to_sObject



18
19
20
# File 'app/models/spree/country.rb', line 18

def to_s
  name
end