Election results in the London Borough of Sutton.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

14 строки
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