Last active
February 2, 2016 20:42
-
-
Save conorliv/e1e51c9c01163e9868c1 to your computer and use it in GitHub Desktop.
This file contains 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
r2.2.2 :001 > require 'roo' | |
=> true | |
2.2.2 :002 > s = Roo::Excelx.new('./roo_error.xlsx') | |
=> <#Roo::Excelx:1776756266060540 @tmpdirs @tmpdir @shared @filename @sheet_files @workbook @sheet_names @sheets @sheets_by_name @options @cell @cell_type @cells_read @first_row @last_row @first_column @last_column @header_line> | |
2.2.2 :003 > s.each_row_streaming do |row| | |
2.2.2 :004 > p row.first.value | |
2.2.2 :005?> end | |
"Value" | |
nil | |
=> nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think that the value on line 9 should be
"Value"
instead of nil. This seems reasonable because A1 and A2 are merged together.