Variety of small changes (mostly to properties) plus a few "in the
[selectricity] / app / models / ranking.rb
old mode 100644 (file)
new mode 100755 (executable)
index 4b96b54..5ef0575
@@ -1,9 +1,14 @@
 class Ranking < ActiveRecord::Base
   belongs_to :candidate
   belongs_to :vote
+  acts_as_list :scope => :vote, :column => :rank
 
   def <=>(other)
     self.rank <=> other.rank
   end
 
+  def to_s
+    self.rank.to_s
+  end
+
 end

Benjamin Mako Hill || Want to submit a patch?