Open
Description
Steps to reproduce
xlsx = Roo::Spreadsheet.open('./new_prices.xlsx')
xlsx.each_with_pagename do |name, sheet|
p name
end
=> #<Enumerator: #<Enumerator::Generator:0x0000000107d6b188>:each>
Issue
If think the method each_with_pagename
has changed and the doc should be adapted accordingly, with something like this :
# Iterate through each sheet
xlsx.sheets.each do |name|
sheet = xlsx.sheet(name)
p name
end
Metadata
Assignees
Labels
No labels
Activity