Skip to content

Instantly share code, notes, and snippets.

@brenes
Created December 14, 2010 11:49
Show Gist options
  • Save brenes/740310 to your computer and use it in GitHub Desktop.
Save brenes/740310 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'faster_csv'
FasterCSV.foreach('areas.csv', :headers => true, :col_sep => ';') do |row|
from = "<ID_CENTRO_TRABAJO>#{row['ID_CENTRO_TRABAJO']}</ID_CENTRO_TRABAJO>"
to = "<ID_CENTRO_TRABAJO>#{row['INTRANET']}</ID_CENTRO_TRABAJO>"
File.open('fixed.xml').each_line { |line| puts line.gsub(from, to) }
end
fixed_xml.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment