# File lib/benelux/mixins.rb, line 5
5:   def hex_object_id
6:     prefix = RUBY_VERSION >= '1.9' ? '0x00000' : '0x'
7:     "%s%x" % [prefix, (self.object_id.abs << 1)]
8:   end