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