Last active
December 13, 2018 01:53
-
-
Save hackvan/162c5f8a868ddc3c722d6c90ab83da9c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Student | |
def method_missing(name) | |
puts "No fue encontrado el método #{name}" | |
end | |
end | |
student = Student.new | |
student.reflection | |
# No fue encontrado el método reflection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment