I have gems on my system Mac OS X (Panther 10.3.9)
To install instiki after with gems I run the following command
sudo gems instiki
#!/usr/local/bin/ruby
#
# This file was generated by RubyGems.
#
# The application 'instiki' is installed as part of a gem, and
# this file is here to facilitate running it.
#
require 'rubygems'
version = "> 0"
if ARGV.size > 0 && ARGV[0][0]==95 && ARGV[0][-1]==95
if Gem::Version.correct?(ARGV[0][1..-2])
version = ARGV[0][1..-2]
ARGV.shift
end
end
require_gem 'instiki', version
load 'instiki'
I created a directory /Users/marekj/instiki/wiki1. This is where I will have my instiki (wiki1 as an example: you can name your wiki the way you want it). To make sure I will always run my wiki storage in this directory I created a file wiki1.sh where I put the following command.
instiki -t /Users/marekj/instiki/wiki1
Notice that your terminal windows now displays all the actions of a server. When you quit your session the server stops. I shall follow instructions on Getting Instiki to Run in the Background page but with my gems setup I created another file called wiki1nohup.sh with one line command:
nohup instiki -t /Users/marekj/instiki/wiki1 >& wiki1instiki.`date "+%Y%m%d%H%M%S"`.log &
Feel free to change or add to these instructions. Thanks