Created
September 1, 2014 06:29
-
-
Save xiaohanyu/67df9c2b958ac8fc0cf1 to your computer and use it in GitHub Desktop.
convert yaml to json in ruby
This file contains 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
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 |
I just ran into this exact same problem....
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
limited....
`