Skip to content

Instantly share code, notes, and snippets.

@yamaaki
Last active August 29, 2015 14:27
Show Gist options
  • Save yamaaki/6a33a7906676a80f2943 to your computer and use it in GitHub Desktop.
Save yamaaki/6a33a7906676a80f2943 to your computer and use it in GitHub Desktop.
class API < Grape::API
version 'v1', using: :path
format :json
formatter :json, Grape::Formatter::Jbuilder
desc 'Ping pong.'
get '/ping', jbuilder: 'ping' do
@pong = {
message: 'pong',
now: Time.now,
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment