Created
July 9, 2013 15:33
-
-
Save tdl/5958332 to your computer and use it in GitHub Desktop.
Convert XML to JSON
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment