-
Notifications
You must be signed in to change notification settings - Fork 503
New issue
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
Remove tempdirs via finalizers #329
Merged
Merged
Conversation
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
Rather than the Base#close method which must be called explicitly to work. #close can still be used for manual memory management, but it may be deprecated / removed in the future. Fixes #326
Coverage decreased (-0.3%) to 93.713% when pulling b1ad9bd91bba769edfe64c35f94efb59d08de175 on finalizers into 7498f00 on master. |
Purely for better organization of he code. Prior uses are maintained with deprecation.
dangerous
added a commit
to dangerous/roo-xls
that referenced
this pull request
Aug 23, 2016
This is related to the changes made in Roo with roo-rb/roo#329
jsonn
pushed a commit
to jsonn/pkgsrc
that referenced
this pull request
Oct 15, 2016
## [2.5.1] 2016-08-26 ### Fixed - Fixed NameError. [337](roo-rb/roo#337) ## [2.5.0] 2016-08-21 ### Fixed - Remove tempdirs via finalizers on garbage collection. This cleans them up in all known cases, rather than just when the #close method is called. The #close method can be used to cleanup early. [329](roo-rb/roo#329) - Fixed README.md typo [318](roo-rb/roo#318) - Parse sheets in ODS files once to improve performance [320](roo-rb/roo#320) - Fix some Cell conversion issues [324](roo-rb/roo#324) and [331](roo-rb/roo#331) - Improved memory performance [332](roo-rb/roo#332) - Added `no_hyperlinks` option to improve streamig performance [319](roo-rb/roo#319) and [333](roo-rb/roo#333) ### Deprecations - Roo::Base::TEMP_PREFIX should be accessed via Roo::TEMP_PREFIX - The private Roo::Base#make_tempdir is now available at the class level in classes that use tempdirs, added via Roo::Tempdir ======= ### Added - Discard hiperlinks lookups to allow streaming parsing without loading whole files ## [2.4.0] 2016-05-14 ### Fixed - Fixed opening spreadsheets with charts [315](roo-rb/roo#315) - Fixed memory issues for Roo::Utils.number_to_letter [308](roo-rb/roo#308) - Fixed Roo::Excelx::Cell::Number to recognize floating point numbers [306](roo-rb/roo#306) - Fixed version number in Readme.md [304](roo-rb/roo#304) ### Added - Added initial support for HTML formatting [278](roo-rb/roo#278)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rather than the Base#close method which must be called explicitly to
work. #close can still be used for manual memory management, but it may
be deprecated / removed in the future.
Fixes #326