Advertisement
Guest User

CsvToJson

a guest
Mar 25th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. require 'csv'
  2. require 'json'
  3.  
  4. class CsvToJson
  5.  
  6. def initialize
  7. end
  8.  
  9. def read_in_csv_data(csv_file_name)
  10. File.open("temp.json","w") do |f|
  11. f.write(CSV.read(csv_file_name, headers: true).to_json)
  12. end
  13. end
  14.  
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement