Created
October 3, 2011 01:32
-
-
Save HeroicEric/1258244 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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