Skip to content

Instantly share code, notes, and snippets.

@HeroicEric
Created October 3, 2011 01:32
Show Gist options
  • Save HeroicEric/1258244 to your computer and use it in GitHub Desktop.
Save HeroicEric/1258244 to your computer and use it in GitHub Desktop.
# blog.rb
require 'rubygems'
require 'bundler/setup'
require 'sinatra/base'
class Blog < Sinatra::Base
get '/' do
"Hello World!"
end
end
# config.ru
require './blog'
run Blog
# Gemfile
source "http://rubygems.org"
gem 'sinatra'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment