Skip to content

Instantly share code, notes, and snippets.

@gabrielcorado
Created October 8, 2015 14:28
Show Gist options
  • Save gabrielcorado/f4a2ef9ba0003be27308 to your computer and use it in GitHub Desktop.
Save gabrielcorado/f4a2ef9ba0003be27308 to your computer and use it in GitHub Desktop.
Use different formatters in Grape
resource :bidules do
desc "My API 1"
formatter :csv, CustomCsvFormatter
get '/' do
present my_data, with: MyEntity
end
resource :blublu do
desc "My API 2"
formatter :csv, CustomOtherCsvFormatter
get '/' do
present my_data, with: MyEntity
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment