Skip to content

Instantly share code, notes, and snippets.

@DuckOfDoom
Last active August 29, 2015 14:27
Show Gist options
  • Save DuckOfDoom/da5868fd7f3549e619de to your computer and use it in GitHub Desktop.
Save DuckOfDoom/da5868fd7f3549e619de to your computer and use it in GitHub Desktop.
require 'json'
if ARGV.size < 1
puts "Enter file name"
exit
end
json = JSON.parse File.open(ARGV[0], 'r').read
beautiful = JSON.pretty_generate json
File.open(ARGV[0], 'w').write(beautiful)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment