Skip to content

Instantly share code, notes, and snippets.

@hackvan
Last active December 13, 2018 01:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hackvan/162c5f8a868ddc3c722d6c90ab83da9c to your computer and use it in GitHub Desktop.
Save hackvan/162c5f8a868ddc3c722d6c90ab83da9c to your computer and use it in GitHub Desktop.
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