Skip to content

Instantly share code, notes, and snippets.

@seki
Created May 15, 2016 21:11
Show Gist options
  • Save seki/b68ceecb2d50d85f783942d67324d91a to your computer and use it in GitHub Desktop.
Save seki/b68ceecb2d50d85f783942d67324d91a to your computer and use it in GitHub Desktop.
module OnGC
module_function
def on_gc(&blk)
ObjectSpace.define_finalizer(Object.new, &blk)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment