Skip to content

Instantly share code, notes, and snippets.

@hernan
Forked from xiaohanyu/yaml_to_json.rb
Created February 24, 2016 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hernan/84d58d827fd9ade91d62 to your computer and use it in GitHub Desktop.
Save hernan/84d58d827fd9ade91d62 to your computer and use it in GitHub Desktop.
convert yaml to json in ruby
require 'json'
require 'yaml'
input_filename = ARGV[0]
output_filename = input_filename.sub(/(yml|yaml)$/, 'json')
input_file = File.open(input_filename, 'r')
input_yml = input_file.read
input_file.close
output_json = JSON.dump(YAML::load(input_yml))
output_file = File.open(output_filename, 'w+')
output_file.write(output_json)
output_file.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment