.pryrc
author Mahlon E. Smith <mahlon@martini.nu>
Wed, 25 Sep 2019 16:07:09 -0700
changeset 19 d9922543b6f3
parent 0 3cc90e88c6ab
permissions -rw-r--r--
Added tag v0.4.0 for changeset e18bc5021028

#!/usr/bin/ruby -*- ruby -*-

require 'configurability'
require 'loggability'
require 'pathname'
require 'strelka'

$LOAD_PATH.unshift( '../Thingfish/lib', 'lib' )

begin
	require 'thingfish'
	require 'thingfish/metastore/pggraph'

	Loggability.level = :debug
	Loggability.format_with( :color )

	if File.exist?( 'config.yml' )
		Strelka.load_config( 'config.yml' )
		metastore = Thingfish::Metastore.create( 'pggraph' )
	end

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