Skip to content

Instantly share code, notes, and snippets.

View mazgi's full-sized avatar

Hidenori Matsuki mazgi

View GitHub Profile
@mazgi
mazgi / Gemfile
Last active December 17, 2015 13:29 — forked from nebiros/Gemfile
for Rack app with unicorn
group :production do
gem "unicorn"
end
@mazgi
mazgi / config.ru
Last active December 17, 2015 14:39 — forked from tobert/config.ru
for gollum
$: << 'lib'
require 'rubygems'
require 'gollum'
require 'gollum/app'
use Rack::ShowExceptions
Precious::App.set(:gollum_path, Dir.pwd)
Precious::App.set(:wiki_options, {})