Modified graphs to ahve a 4 color scheme, but it isn't the full palette of selectrici...
[selectricity] / lib / rubyvote / election.rb
index 42f18bb6c9fa7470e34c46051787573b377fdce2..efb8dd8aae1ce56abc9896853a32eaf5c0f562da 100644 (file)
@@ -140,7 +140,8 @@ end
 
 class PluralityResult < ElectionResult
   attr_reader :ranked_candidates
-
+  attr_reader :points
+  
   def initialize(voteobj=nil)
     super(voteobj)
 
@@ -151,6 +152,8 @@ class PluralityResult < ElectionResult
       b[1] <=> a[1]
     end.collect {|a| a[0]}
     
+    @points = self.election.votes
+    
     # winners are anyone who has the same number of votes as the
     # first person
     @winners = @ranked_candidates.find_all do |i|

Benjamin Mako Hill || Want to submit a patch?