Created
August 4, 2010 08:19
-
-
Save anonymous/507837 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i = 0 | |
html = "" | |
rows_array = rows.map {|r| PdfUtilities.separate_rows r} | |
# rows_array will be something like: | |
# [["<td>one</td>", "<td>two</td>"], ["<td>three</td>"]] | |
while rows_array.collect {|r| r[i].nil?}.include? false | |
rows_array.each do |rr| | |
# Do something with rr[i] here | |
end | |
i += 1 | |
end | |
return html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment