Skip to content

Instantly share code, notes, and snippets.

@afiore
Created May 13, 2012 16:28
Show Gist options
  • Save afiore/2689191 to your computer and use it in GitHub Desktop.
Save afiore/2689191 to your computer and use it in GitHub Desktop.
silly rack app
require 'rubygems'
require 'bundler/setup'
require 'grape'
class MyApp < Grape::API
version 'V1', :using => :header
get '/' do
"hello world!"
end
end
require './app'
run MyApp
source 'http://rubygems.org'
gem 'grape'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment