Skip to content

Instantly share code, notes, and snippets.

@tdl
tdl / XML_to_JSON.rb
Created July 9, 2013 15:33
Convert XML to JSON
# inspired by http://stackoverflow.com/questions/1530324/ruby-xml-to-json-converter
require 'json'
require 'active_support/core_ext/hash'
STDOUT.write(JSON.pretty_generate(Hash.from_xml(ARGF.read)))