Skip to content

Instantly share code, notes, and snippets.

@Neil-Aframe
Created January 28, 2013 17:17
Show Gist options
  • Save Neil-Aframe/4657311 to your computer and use it in GitHub Desktop.
Save Neil-Aframe/4657311 to your computer and use it in GitHub Desktop.
Grape. Issue 326 reproduction
require 'grape'
class ExamplePostBody < Grape::API
prefix 'api'
format :serializable_hash
rescue_from :all
default_error_formatter :json
resource :echo do
post do
{
:params => params
}
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment