X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/1660465f3e072cbddc19b19f7f8869affb0694c5..4efa3e9bc47cc649205a399fde51ed7e61bef7f8:/app/models/candidate.rb diff --git a/app/models/candidate.rb b/app/models/candidate.rb index 41d743b..e17ba29 100644 --- a/app/models/candidate.rb +++ b/app/models/candidate.rb @@ -1,2 +1,12 @@ class Candidate < ActiveRecord::Base + belongs_to :election + + def <=>(other) + self.name <=> other.name + end + + def to_s + name + end + end