Sha256: 36282e0739c8e9443db020c4971f902c106ee4c082846da248ffffb2e4d6915e

Contents?: true

Size: 356 Bytes

Versions: 3

Compression:

Stored size: 356 Bytes

Contents

module RMXCommonMethods

  def rmx_dealloc
  end

  if RMX::DEBUG_DEALLOC
    def dealloc
      p " - dealloc! (queue: #{Dispatch::Queue.current.description})"
      rmx_dealloc
      super
    end
  else
    def dealloc
      rmx_dealloc
      super
    end
  end

  def description
    rmx_object_desc
  end

  def inspect
    rmx_object_desc
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rmx-0.6.2 lib/motion/RMXCommonMethods.rb
rmx-0.6.1 lib/motion/RMXCommonMethods.rb
rmx-0.6.0 lib/motion/RMXCommonMethods.rb