Election results in the London Borough of Sutton.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

14 righe
236 B

  1. require 'csv'
  2. require './models'
  3. CSV.foreach(ARGV.shift) do |row|
  4. pc = row[0].strip
  5. puts pc
  6. if @postcode = Postcode.get(pc)
  7. @postcode.polling_station_id = row[1]
  8. @postcode.save
  9. else
  10. puts "#{pc} not found"
  11. end
  12. end