How would this be written to be on a single line?
in_file = open(from_file)
indata = in_file.read
How would this be written to be on a single line?
in_file = open(from_file)
indata = in_file.read
File.read("/path/to/file")
It will read whole file content and return it as a result.