Election results in the London Borough of Sutton.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

14 rader
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