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
Originally posted here:
http://rubyforge.org/tracker/?func=detail&atid=16730&aid=29461&group_id=4356
(Ruby 1.9.3)
The code:
open(self.config_file).each do |line|
keeps the file open.
Code like:
ParseConfig.new("tmp.ini") FileUtils.rm "tmp.ini"
will fail.
Workaround:
open(self.config_file) { |f| f.each do |line|
The text was updated successfully, but these errors were encountered:
as far as I can tell only ruby 1.9.3 on windoze will fail (ruby 1.9.2 or linux will run fine).
Sorry, something went wrong.
Thanks for that feedback McBen... regardless I've implemented the change in 0.5.3.
derks
No branches or pull requests
Originally posted here:
http://rubyforge.org/tracker/?func=detail&atid=16730&aid=29461&group_id=4356
(Ruby 1.9.3)
The code:
keeps the file open.
Code like:
will fail.
Workaround:
The text was updated successfully, but these errors were encountered: