Add a simple Sinatra app with a single root-route

This is a mock-standin for a real web service, I don't
really feel like building a photo-sharing site just for a blog
post
This commit is contained in:
R. Tyler Croy 2012-06-17 13:12:50 -07:00
parent b875858a78
commit 43354e8c44
1 changed files with 7 additions and 0 deletions

7
pentagram.rb Normal file
View File

@ -0,0 +1,7 @@
require 'rubygems'
require 'sinatra'
get '/' do
'Welcome to PentaGram, the best satanic photo-sharing site since MySpace.'
end