### Steps to reproduce ```ruby 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 : ```ruby # Iterate through each sheet xlsx.sheets.each do |name| sheet = xlsx.sheet(name) p name end ```