Skip to content

Instantly share code, notes, and snippets.

@fgarcia
Created December 25, 2013 13:50
Show Gist options
  • Save fgarcia/8123341 to your computer and use it in GitHub Desktop.
Save fgarcia/8123341 to your computer and use it in GitHub Desktop.
BareBone Sinatra app that can be launched with Rack
require "sinatra"
class Bone < Sinatra::Base
get "/" do
"hello"
end
run! if app_file == $0
end
require './bone'
run Bone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment