vote up 1 vote down star

Is there a library to convert xml to json in ruby?

flag

1 Answer

vote up 3 vote down check

A simple trick:

First you need to gem install json, then when using Rails you can do:

require 'json'
Hash.from_xml('<variable type="product_code">5</variable>').to_json #=> "{\"variable\":\"5\"}"

If you are not using Rails, then you can gem install activesupport, require it and things should work smoothly.

Example:

require 'json'
require 'net/http'
s = Net::HTTP.get_response(URI.parse('http://stackoverflow.com/feeds/tag/ruby/')).body
Hash.from_xml(s).to_json
link|flag
sick man, thanks! – viatropos Oct 7 at 11:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.