X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/fc0a6a8d7ea15bcdb27ebdd58721401c7045c6e0..99e1580f0d7707b8e2f8c08f8aae70c3d4906637:/app/models/raw_voter_list.rb diff --git a/app/models/raw_voter_list.rb b/app/models/raw_voter_list.rb old mode 100755 new mode 100644 index 71b200f..64530d7 --- a/app/models/raw_voter_list.rb +++ b/app/models/raw_voter_list.rb @@ -1,3 +1,10 @@ +# Selectricity: Voting Machinery for the Masses +# Copyright (C) 2007, 2008 Benjamin Mako Hill +# Copyright (C) 2007 Massachusetts Institute of Technology +# +# This program is free software. Please see the COPYING file for +# details. + class RawVoterList attr_accessor :email @@ -16,7 +23,7 @@ class RawVoterList def each @input_addresses.split("\n").each do |address| - yield Voter.new( { :email => address } ) + yield FullVoter.new( { :email => address } ) end end end