-
-
Save havenwood/885020a56698ccea33df8faf633b68b7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Post | |
def foo | |
:foo | |
end | |
def bar | |
self | |
end | |
end | |
Post.new.method(:foo).owner | |
#=> Post | |
Post.new.bar | |
#=> #<Post:0x...> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment