Multiple changes.
- Remove the runtime dependency on rake-compiler.
- Use #rb_str_new instead of #rb_str_new2, the hash character array
isn't null terminated.
- Add various safeguards for object instantiations.
- Remove the 'threaded' options for messages, folding them into
'archived'. If archiving is enabled, so is threading.
- Return nil for lookups from the list object instead of raising
exceptions.
- Open subject indexes with the proper encodings (thanks Michael
Granger!)
- Allow touching and unlinking files to operate on multiple paths
at once, within a single safety() wrap.
#!/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