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