@m_seki の

I like ruby tooから引っ越し

%w(R Wiki).reverse.join

Kramdownの練習用に極小のWiki書いた。いつもの4行CGIから起動します。

CGIの名前はなんでも良いんだけど、http://localhost/cgi-bin/50830.rb/index.htmlにアクセスしてね。path_infoがページ名なので/以下必要です。

#!/usr/local/bin/ruby
require 'drb/drb'

DRb.start_service('druby://localhost:0')
ro = DRbObject.new_with_uri('druby://localhost:50830')
ro.start(ENV.to_hash, $stdin, $stdout)