Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created December 8, 2011 23:42
Show Gist options
  • Save mostlyobvious/1449281 to your computer and use it in GitHub Desktop.
Save mostlyobvious/1449281 to your computer and use it in GitHub Desktop.
require 'goliath'
require 'grape'
class OhSnap < Grape::API
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