Guest User

Untitled

a guest
Jun 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def to_json(object)
  2. if Rails.env.production?
  3. JSON.generate(object)
  4. else
  5. JSON.pretty_generate(object)
  6. end
  7. end
Add Comment
Please, Sign In to add comment