Skip to content

Instantly share code, notes, and snippets.

@hjast
Created November 12, 2009 00:03
Show Gist options
  • Select an option

  • Save hjast/232446 to your computer and use it in GitHub Desktop.

Select an option

Save hjast/232446 to your computer and use it in GitHub Desktop.
#APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
require 'rubygems'
require 'sinatra'
require 'haml'
require 'sinatra/dynamicmatic'
class Gsd < Sinatra::Application
#set :root, APP_ROOT
set :public, File.dirname(__FILE__) + '/site'
get '/' do
"Hello World"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment