# Motion::MemoryManagement This gem provides weak references and autorelease pools for your ruby code! ## Installation ### Update your Rakefile ```ruby require 'motion-memorymanagement' ``` ### Available API demos ```ruby class Test def method "hello" end end t = Test.new wt = t.weak! wt.method # => "hello" t = nil wt.method # => nil ``` ### Notes Lots of thanks to Mike Ash for his MAZeroingWeakRef!