# File lib/thor/util.rb, line 157 def self.load_thorfile(path, content=nil) content ||= File.read(path) begin Thor::Sandbox.class_eval(content, path) rescue Exception => e $stderr.puts "WARNING: unable to load thorfile #{path.inspect}: #{e.message}" end end