From: John Dong Date: Tue, 14 Aug 2007 23:29:48 +0000 (+0000) Subject: Allow PluralityVote to accept non-string arguments. (I couldn't find any reason why... X-Git-Url: https://projects.mako.cc/source/rubyvote/commitdiff_plain/d01ccdbbf0b98a7b6a3c67a51ff6752a80b890a3?ds=sidebyside Allow PluralityVote to accept non-string arguments. (I couldn't find any reason why that wasn't the case to begin with) git-svn-id: svn://rubyforge.org/var/svn/rubyvote/trunk@29 1440c7f4-e209-0410-9a04-881b5eb134a8 --- diff --git a/lib/rubyvote/election.rb b/lib/rubyvote/election.rb index 3d816a8..ec30ab9 100644 --- a/lib/rubyvote/election.rb +++ b/lib/rubyvote/election.rb @@ -75,7 +75,7 @@ class PluralityVote < ElectionVote protected def verify_vote(vote=nil) - vote.instance_of?( String ) + vote ? true : false end def tally_vote(candidate)