Upgrading to ruby-1.6.8-preview broke one of my apps. The culprit
was:
class Topic
…
SAVE_MODE = File::Constants.module_eval do WRONLY | CREAT | TRUNC end
…
end
… which used to work but now complains:
uninitialized constant WRONLY at Topic (NameError)
Fixing it was trivial, but I am interested to know whether this change
is deliberate?
Regards,
Jeremy Henty