Created
March 9, 2016 08:29
-
-
Save at-longhoang/a3417de0242b86c2c6c7 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 Parent | |
private | |
def name | |
'Testing' | |
end | |
end | |
p = Parent.new | |
error: | |
p.name | |
# => NoMethodError: private method `name' called for #<Parent:0x0000000182a360> | |
p.send(:name) | |
# => "Testing" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment