Checkpoint commit.
This commit is contained in:
parent
cf10ef2d7b
commit
29d8053770
9 changed files with 1236 additions and 24 deletions
23
.irbrc
Normal file
23
.irbrc
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue