.pryrc
author Mahlon E. Smith <mahlon@laika.com>
Tue, 16 May 2017 13:58:56 -0700
changeset 19 c09ca4007e6c
parent 15 a38e6916504c
permissions -rw-r--r--
Added tag v1.0.0 for changeset 9aaac749fd9f

#!/usr/bin/ruby


$LOAD_PATH.unshift( 'lib' )

require 'pathname'
listpath = Pathname.new( __FILE__ ).dirname + 'spec' + 'data'

begin
	require 'ezmlm'
	list = Ezmlm::List.new( listpath + 'testlist' )

rescue Exception => e
	$stderr.puts "Ack! Ezmlm libraries failed to load: #{e.message}\n\t" +
		e.backtrace.join( "\n\t" )
end