I have an encrypted file file = File.new("encrypted.file", "r") that I would like to require in Ruby after decryption. I do not want to decrypt, save, require, and delete the file.
What I do now is:
str=""
file.each do |line|
str+=line
end#do
str = doSomeDecryption(str)
I would like to require str in some way. Any ideas? eval(str) is not an option; it really has to be 'requireable'.
