Class: Spree::Country
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Spree::Country
- Defined in:
- app/models/spree/country.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.states_required_by_country_id ⇒ Object
7 8 9 10 11 |
# File 'app/models/spree/country.rb', line 7 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
13 14 15 |
# File 'app/models/spree/country.rb', line 13 def <=>(other) name <=> other.name end |
#to_s ⇒ Object
17 18 19 |
# File 'app/models/spree/country.rb', line 17 def to_s name end |