.pryrc
author Mahlon E. Smith <mahlon@martini.nu>
Tue, 30 May 2017 11:08:48 -0700
changeset 25 81cc7d47f68f
parent 15 a38e6916504c
permissions -rw-r--r--
Oop, the 'mailinglist' file was leftover from older ezmlm. Not created by ezmlm-make anymore.

#!/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