Skip to content

Instantly share code, notes, and snippets.

@zhum
Created September 19, 2014 05:44
Show Gist options
  • Save zhum/3c8133ed5c2c86590922 to your computer and use it in GitHub Desktop.
Save zhum/3c8133ed5c2c86590922 to your computer and use it in GitHub Desktop.
json_or_jsonp - great helper
def json_or_jsonp( json )
callback = params.delete('callback')
if callback
content_type :js
response = "#{callback}(#{json})"
else
content_type :json
response = json
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment