Created
July 19, 2018 06:09
-
-
Save sugumura/221d1f939c375b6641af587420824d87 to your computer and use it in GitHub Desktop.
Rails consoleでJSONを出力したいとき
This file contains hidden or 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
# ファイルに書き出したい | |
>> f = File.new(Rails.root + 'hoge.json', 'w') | |
>> f << JSON.pretty_generate(Post.all.as_json) | |
>> f.close | |
# 出力したい | |
>> puts JSON.pretty_generate(Post.all.as_json) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment