Allow PluralityVote to accept non-string arguments. (I couldn't find any reason why...
authorJohn Dong <jdong@mit.edu>
Tue, 14 Aug 2007 23:29:48 +0000 (23:29 +0000)
committerJohn Dong <jdong@mit.edu>
Tue, 14 Aug 2007 23:29:48 +0000 (23:29 +0000)
git-svn-id: svn://rubyforge.org/var/svn/rubyvote/trunk@29 1440c7f4-e209-0410-9a04-881b5eb134a8

lib/rubyvote/election.rb

index 3d816a89212e572a2c2165a2180908ab20fc7198..ec30ab9c357f5cd35f28e2b45123de76c1eebf74 100644 (file)
@@ -75,7 +75,7 @@ class PluralityVote < ElectionVote
   
   protected
   def verify_vote(vote=nil)
   
   protected
   def verify_vote(vote=nil)
-    vote.instance_of?( String )
+    vote ? true : false
   end
 
   def tally_vote(candidate)
   end
 
   def tally_vote(candidate)

Benjamin Mako Hill || Want to submit a patch?