Skip to content

Instantly share code, notes, and snippets.

@benburwell
Last active August 29, 2015 14:17
Show Gist options
  • Save benburwell/20e76f70645c8003b088 to your computer and use it in GitHub Desktop.
Save benburwell/20e76f70645c8003b088 to your computer and use it in GitHub Desktop.
YAML to JSON in Ruby
require 'yaml'
require 'json'
data = YAML.load_file 'legislators-current.yaml'
File.write 'legislators-current.json', data.to_json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment