Introducing #method_missing
We need you to do some spying. We need you to create an object which will accept any messages passed to it. And something that won't reveal any information about itself. Now, let's see how that would work.
That's no good is it? You'll be found out immediately. "But, hold on", you say. "You said it should accept any messages passed to it. And you're using method calls. I'm confused."
Well, what you need to understand is any method call in Ruby is actually a message being passed to that object. One way to demonstate is to look at the method_missing
method. Let's take a look at it in it's most basic form and see if we can use it to solve our previous problem. You need to define a method in your class which accepts one argument (maybe called sym) which will have the name of the method that was called on your object (as a symbol).