Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created December 8, 2011 23:41
Show Gist options
  • Save mostlyobvious/1449278 to your computer and use it in GitHub Desktop.
Save mostlyobvious/1449278 to your computer and use it in GitHub Desktop.
require 'goliath'
require 'grape'
class OhSnap < Grape::API
version 'v1', using: :header, vendor: 'drug', format: :json
get :one do
{"oh" => "bugger!"}
end
end
class MyGrape < Goliath::API
map '/' do
run OhSnap
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment