aaf289e27ad6a5b5953c405a6e1479236fa02167
[selectricity-live] / app / models / raw_voter_list.rb
1 # Selectricity: Voting Machinery for the Masses
2 # Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
3 # Copyright (C) 2007 Massachusetts Institute of Technology
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as
7 # published by the Free Software Foundation, either version 3 of the
8 # License, or (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Affero General Public License for more details.
14 #
15 # You should have received a copy of the GNU Affero General Public
16 # License along with this program.  If not, see
17 # <http://www.gnu.org/licenses/>.
18
19 class RawVoterList
20
21   attr_accessor :email
22   attr_accessor :input_addresses
23
24   include Enumerable
25
26   def initialize(params={})
27     @email = params[:email].to_i || 1
28     @input_addresses = params[:input_addresses] || String.new
29   end
30
31   def email=(email)
32     @email = email
33   end
34   
35   def each
36     @input_addresses.split("\n").each do |address|
37       yield FullVoter.new( { :email => address } ) 
38     end
39   end
40 end

Benjamin Mako Hill || Want to submit a patch?