From: Daniel Brumbaugh Keeney Date: 2007-12-24T05:21:14+09:00 Subject: eval a file Basically, I was wondering if it is possible in Ruby to eval a file without loading the whole thing in memory. I'm trying to avoid eval(File.new(location).read), but at the same time, I don't want the file to contain a named method that could conflict with other named methods. -Daniel Brumbaugh Keeney