Skip to content

Instantly share code, notes, and snippets.

@aishek
Last active August 29, 2015 14:07
Show Gist options
  • Save aishek/7070c9c750ad0b3b54bd to your computer and use it in GitHub Desktop.
Save aishek/7070c9c750ad0b3b54bd to your computer and use it in GitHub Desktop.
grape api version class example
# app/controllers/api/v1.rb
class Api::V1 < Grape::API
format :json
content_type :json, 'application/json; charset=utf-8'
version 'v1'
mount CitiesAPI
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment