4b96b54c2060e5d8053c313a8975b901635e9042
[selectricity] / app / models / ranking.rb
1 class Ranking < ActiveRecord::Base
2   belongs_to :candidate
3   belongs_to :vote
4
5   def <=>(other)
6     self.rank <=> other.rank
7   end
8
9 end

Benjamin Mako Hill || Want to submit a patch?