# File lib/god/cli/run.rb, line 160 def load_god_file(god_file) load File.expand_path(god_file) rescue Exception => e if e.instance_of?(SystemExit) raise else puts "There was an error in #{god_file}" puts "\t" + e.message puts "\t" + e.backtrace.join("\n\t") return false end end