Is there a Perl equivalent END block in Ruby? In Perl, if I specify an END block, the code in that block will get executed no matter where the program bails out. It is great functionality for closing open file handles. Does Ruby support similar functionality? I tried Ruby's "END{}" block but that doesnt seem to get called if I had an exit in the code due to an error.
Thanks!
exit!to exit, rather thanexit? Forexit!: "No exit handlers are run." which seems to apply to bothENDblocks andat_exithandlers. – matt Jul 30 '12 at 3:44IO.open/newwith blocks, so you don't have to close the files yourself. – echristopherson Jul 30 '12 at 16:47END: ruby-doc.org/docs/keywords/1.9/Object.html#method-i-END . I've never seen it used in actual code, whereas I have seenKernel#at_exitused. – Andrew Grimm Jul 31 '12 at 0:00