X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/9abed97635edbac7fb1a687298fff5c5434cdff4..f7aee769411a893c1059c529a220c0d25c72974f:/app/models/candidate.rb diff --git a/app/models/candidate.rb b/app/models/candidate.rb index a0e492e..e17ba29 100644 --- a/app/models/candidate.rb +++ b/app/models/candidate.rb @@ -2,7 +2,11 @@ class Candidate < ActiveRecord::Base belongs_to :election def <=>(other) - self.name <=> other.name + self.name <=> other.name + end + + def to_s + name end end