I\'m trying to make an html table that looks like this:
1 2 3 4 5 1 2 3 4 5 1 2 3 4 5
My data structure is like this: @f_ary = [ 1..250]
You can use the each_slice like so:
- @f_ary.each_slice(5) do |row| %tr - row.each do |cnt| td=cnt