]> projects.mako.cc - selectricity-live/blob - app/models/ranking.rb
Removed extra copy of randarray.rb that was lying around in the wrong place.
[selectricity-live] / 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?