Skip to content

Instantly share code, notes, and snippets.

@zacheryph
Created October 25, 2009 02:29
Show Gist options
  • Save zacheryph/217849 to your computer and use it in GitHub Desktop.
Save zacheryph/217849 to your computer and use it in GitHub Desktop.
require 'sinatra/base'
class Bacon < Sinatra::Base
enable :logging, :clean_trace
get '/' do
'Hello from Sinatra!'
end
end
require 'sinatra'
require 'app.rb'
run Bacon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment