I am using Linux + Apache + ruby 1.8.7 (2009-06-08 patchlevel 173)
I use quite many .cgi pages which are nothing more than .rb files
which output a html string.
I found that every of this .cgi page requires my “web.rb” file.
Is it somehow possible to auto-load this file without doing
require ‘web.rb’? It is tedious to require that web.rb for every
ruby .cgi page. I wonder if what I would like to have is
somehow possible at all.