We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xlsx = Roo::Spreadsheet.open('./new_prices.xlsx') xlsx.each_with_pagename do |name, sheet| p name end => #<Enumerator: #<Enumerator::Generator:0x0000000107d6b188>:each>
If think the method each_with_pagename has changed and the doc should be adapted accordingly, with something like this :
each_with_pagename
# Iterate through each sheet xlsx.sheets.each do |name| sheet = xlsx.sheet(name) p name end
The text was updated successfully, but these errors were encountered:
There are two open PRs that attemps to fix this #588 and #584 but no news…
Sorry, something went wrong.
As #584 is merged, I guess this is just waiting for a new release
No branches or pull requests
Steps to reproduce
Issue
If think the method
each_with_pagename
has changed and the doc should be adapted accordingly, with something like this :The text was updated successfully, but these errors were encountered: