aboutsummaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorScott Watermasysk <scottwater@gmail.com>2011-08-21 21:06:21 -0400
committerScott Watermasysk <scottwater@gmail.com>2011-08-21 21:06:21 -0400
commit423e8ecbda0394d4c77e2ea659768a8f30c35018 (patch)
treee29f5971d54d67fdd6830515108312b5ba5c0abb /Gemfile
parent23f05c11588a94d0d557ba973ada0e818b49bbb0 (diff)
downloadmy_new_personal_website-423e8ecbda0394d4c77e2ea659768a8f30c35018.tar.xz
my_new_personal_website-423e8ecbda0394d4c77e2ea659768a8f30c35018.zip
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).
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile26
1 files changed, 15 insertions, 11 deletions
diff --git a/Gemfile b/Gemfile
index ffb614f2..cb423fa7 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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' \ No newline at end of file
+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' \ No newline at end of file