Static Server based on Sinatra

Using Sinatra provides better handling of mime types and supports
304's/etc.

Also updated the Gemfile to exclude most gem outside of developemnt
(default).
This commit is contained in:
Scott Watermasysk 2011-08-21 21:06:21 -04:00
parent 23f05c1158
commit 423e8ecbda
3 changed files with 36 additions and 37 deletions

26
Gemfile
View file

@ -1,13 +1,17 @@
source "http://rubygems.org"
gem 'rake'
gem 'rack'
gem 'jekyll'
gem 'rdiscount'
gem 'pygments.rb'
gem 'RedCloth'
gem 'haml', '>= 3.1'
gem 'compass', '>= 0.11'
gem 'rubypants'
gem 'rb-fsevent'
gem 'stringex'
group :development do
gem 'rake'
gem 'rack'
gem 'jekyll'
gem 'rdiscount'
gem 'pygments.rb'
gem 'RedCloth'
gem 'haml', '>= 3.1'
gem 'compass', '>= 0.11'
gem 'rubypants'
gem 'rb-fsevent'
gem 'stringex'
end
gem 'sinatra', '1.2.6'