Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'csv'
- require 'json'
- class CsvToJson
- def initialize
- end
- def read_in_csv_data(csv_file_name)
- File.open("temp.json","w") do |f|
- f.write(CSV.read(csv_file_name, headers: true).to_json)
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement