pythonicrubyist / creek

Ruby library for parsing large Excel files.
http://rubygems.org/gems/creek
MIT License
386 stars 109 forks source link

Removes unused attr_reader and memoizes Book#sheets #114

Closed weilandia closed 1 year ago

weilandia commented 1 year ago

This pr removes the sheets attr reader in Book because it was overwritten by the declared #sheets method. It also memoizes sheets which is presumably the original intent with the attr_reader but not sure.

Fixes warning: method redefined; discarding old sheets

RHammam1 commented 1 year ago

Merged to master