This code (by someone else) might have been written using an older version of Ruby because now I’m getting an error calling ‘each’ on a string object. The maze string below gets passed to the maze_string_to_array method. When it’s run, it yields this error in `maze_string_to_array’
NoMethodError: undefined method `each' for #<String:0x00000100854ac0>
Can you explain what the problem is, and how to fix it?
def maze_string_to_array(mazestring)
@maze = []
mazestring.each do |line|
@maze.push line.chomp
end
end
Maze string
MAZE1 = %{#####################################
# # # #A # # #
# # # # # # ####### # ### # ####### #
# # # # # # # # #
# ##### # ################# # #######
# # # # # # # # #
##### ##### ### ### # ### # # # # # #
# # # # # # B# # # # # #
# # ##### ##### # # ### # # ####### #
# # # # # # # # # # # #
# ### ### # # # # ##### # # # ##### #
# # # # # # #
#####################################}
Ruby 1.8 String#each used to iterate through lines. In 1.9, String#each_line does the same thing.