Skip to content

Instantly share code, notes, and snippets.

@tdl
Created July 9, 2013 15:33
Show Gist options
  • Save tdl/5958332 to your computer and use it in GitHub Desktop.
Save tdl/5958332 to your computer and use it in GitHub Desktop.
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)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment