Skip to content

Commit

Permalink
Switch to Puma for serving pages
Browse files Browse the repository at this point in the history
  • Loading branch information
BanzaiMan committed Nov 20, 2015
1 parent 6bf48f9 commit bddd06d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ source 'https://rubygems.org'
gem "github-pages"
gem "rake"

gem 'rack-jekyll'
gem 'puma'

group :test do
gem 'html-proofer', '~> 2.0'
end
9 changes: 9 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,16 @@ GEM
blankslate (~> 2.0)
posix-spawn (0.3.10)
public_suffix (1.4.6)
puma (2.10.2)
rack (>= 1.1, < 2.0)
pygments.rb (0.6.1)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.2.0)
rack (1.6.4)
rack-jekyll (0.4.5)
jekyll (>= 1.3)
listen (>= 1.3)
rack (~> 1.5)
rake (10.4.2)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
Expand Down Expand Up @@ -142,4 +149,6 @@ PLATFORMS
DEPENDENCIES
github-pages
html-proofer (~> 2.0)
puma
rack-jekyll
rake
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: bundle exec jekyll serve -P $PORT
web: bundle exec puma -p $PORT
3 changes: 3 additions & 0 deletions config.ru
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require 'rack/jekyll'
require 'yaml'
run Rack::Jekyll.new

0 comments on commit bddd06d

Please sign in to comment.