Checkpoint commit.

This commit is contained in:
Michael Granger 2008-08-06 17:24:00 +00:00
parent cf10ef2d7b
commit 29d8053770
9 changed files with 1236 additions and 24 deletions

23
.irbrc Normal file
View file

@ -0,0 +1,23 @@
#!/usr/bin/ruby -*- ruby -*-
BEGIN {
require 'pathname'
basedir = Pathname.new( __FILE__ ).dirname.expand_path
libdir = basedir + "lib"
puts ">>> Adding #{libdir} to load path..."
$LOAD_PATH.unshift( libdir.to_s )
require basedir + 'utils'
include UtilityFunctions
}
# Try to require the 'thingfish' library
begin
require 'ezmlm'
rescue => e
$stderr.puts "Ack! Ezmlm library failed to load: #{e.message}\n\t" +
e.backtrace.join( "\n\t" )
end