.pryrc
author Mahlon E. Smith <mahlon@laika.com>
Wed, 17 Jan 2018 13:33:12 -0800
changeset 13 686fbfe638bd
parent 0 3cc90e88c6ab
permissions -rw-r--r--
Remove deprecated calls for the Sequel ORM, add compatibility for Sequel 5.

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