Skip to content

Instantly share code, notes, and snippets.

Created August 6, 2013 00:13
Show Gist options
  • Save anonymous/8c8d9cb776c7682d17ba to your computer and use it in GitHub Desktop.
Save anonymous/8c8d9cb776c7682d17ba to your computer and use it in GitHub Desktop.
bundle = class MyClass
first_inner_object_id = class << self
self.object_id
end
second_inner_object_id = class << self
self.object_id
end
[self.object_id, first_inner_object_id, second_inner_object_id]
end
puts bundle
#16063720
#16063700
#16063700
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment