Variety of improvements and additions:
[selectricity] / app / models / candidate.rb
1 class Candidate < ActiveRecord::Base
2   belongs_to :election
3
4   def <=>(other)
5    self.name <=> other.name 
6   end
7
8 end

Benjamin Mako Hill || Want to submit a patch?