RUBY: Open file, read it, put lines into array

# open a file (in current directory), stuff it into a variable
my_file = File.open("whatever.txt")
 
my_array = []
# loop through the file = while not at end of file
while ! my_file.eof?
	stuff = my_file.gets.chomp
	# Stick the stuff into the array
	my_array << stuff
end
 
# close the file
my_file.close

"Life does not start and stop at your convenience, you miserable piece of shit"