Created
October 8, 2015 14:28
-
-
Save gabrielcorado/f4a2ef9ba0003be27308 to your computer and use it in GitHub Desktop.
Use different formatters in Grape
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
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