I'm afraid this is the first I've heard of a "writeback" flavoured Blosxom. Try dropping the "/+writeback" bit from the end of the URL.
~./someconf:someconf = 'is in HOME' p local_variables p self
some.rb:somerb = 'is in somewhere' load '~/.someconf' p local_variables p self
実行結果:/path/to/somewhere>ruby some.rb ["someconf"] main ["somerb"] main /home>
どうやら load 元と load 先ではスコープが違うらしい(load 先が別メソッド内にあるような感じ?)。self は共通なので、インスタンス変数にするのが正解なのかな(@someconf みたいに)。