Skip to content

Instantly share code, notes, and snippets.

@ruedap
Created November 2, 2012 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruedap/4004042 to your computer and use it in GitHub Desktop.
Save ruedap/4004042 to your computer and use it in GitHub Desktop.
config.ru of Sinatra for static pages
require 'rubygems'
require 'sinatra'
set :public_folder, File.dirname(__FILE__) + '/'
get('/') { open('index.html').read }
run Sinatra::Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment