Skip to content

Instantly share code, notes, and snippets.

Created August 6, 2013 00:08
Show Gist options
  • Save anonymous/a8f1d7659275536224b6 to your computer and use it in GitHub Desktop.
Save anonymous/a8f1d7659275536224b6 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
# Yields:
# 5448960
# 5448940
# 5448940
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment