aboutsummaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorBrandon Mathis <brandon@imathis.com>2011-09-08 10:31:36 -0500
committerBrandon Mathis <brandon@imathis.com>2011-09-08 10:31:36 -0500
commit71ad7185bc10b1fda8983fa73d195adb37654639 (patch)
tree3a0f3444842c2e102f50214dfee5edc6937ac0ca /Gemfile
parenta289c909092ff025e7444fa73b4039d112ecbce8 (diff)
parent423e8ecbda0394d4c77e2ea659768a8f30c35018 (diff)
downloadmy_new_personal_website-71ad7185bc10b1fda8983fa73d195adb37654639.tar.xz
my_new_personal_website-71ad7185bc10b1fda8983fa73d195adb37654639.zip
Merge branch 'sinatra_static_server' of https://github.com/scottwater/octopress into scottwater-sinatra_static_server
Conflicts: Gemfile Gemfile.lock
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile26
1 files changed, 15 insertions, 11 deletions
diff --git a/Gemfile b/Gemfile
index b3a23aec..6838011c 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'
+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'