I'm looking to create an HTML structure with classes based on the values of arrays from Ruby. I have 6 classes that will be applied to different elements on an 8x8 grid. Each row will be a div with 8 span elements inside. In ruby, each nested array will be the div row and then each element will be a span assigned a class based on the value of the array element.
a = [[1,4,3,2,2,3,1,4]
[4,5,6,6,3,2,3,5]]
So two rows will be created with 8 elements inside with the appropriate classes. Is it possible to convert data structures to HTML like this in Ruby?