Created
March 25, 2011 14:12
-
-
Save kzar/886889 to your computer and use it in GitHub Desktop.
First, broken attempt at getting prettier JSON back from Rails 3
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
#config/initializers/pretty_json.rb | |
module ActiveRecord | |
class Base | |
def to_json | |
JSON.pretty_generate(as_json) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment