From 42985dc5c1a8758adc7bd7118f7b90276f382de4 Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Wed, 29 Sep 2010 14:42:24 -0700 Subject: [PATCH] Explicitly set default port to 4567. --- bin/gollum | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/gollum b/bin/gollum index d3a73ffe..86ac7622 100755 --- a/bin/gollum +++ b/bin/gollum @@ -8,7 +8,7 @@ Gollum is a multi-format Wiki Engine/API/Frontend. Basic Command Line Usage: gollum [OPTIONS] [PATH] - PATH The path to the Gollum repository. + PATH The path to the Gollum repository (default .). Options: HELP @@ -18,7 +18,7 @@ require 'rubygems' require 'gollum' exec = {} -options = { 'bind' => '127.0.0.1' } +options = { 'port' => 4567, 'bind' => '127.0.0.1' } opts = OptionParser.new do |opts| opts.banner = help