show/hide this revision's text 2 added 21 characters in body

Ruby doesn't have any type enforcement, and likewise doesn't do any checking as to what methods an object has at runtimewhen the script is first parsed, because this can be dynamically changed as the application runs.

What method_missing does, is let you intercept and handle calls to methods that don't exist for a given object. This provides the under-the-hood power behind pretty much every DSL (domain-specific language) written in Ruby.

In the case of the example, every one of 'r.iv', 'r.mm', and so on is actually a method call to the Roman object. Of course, it doesn't have an 'iv' or an 'mm' method, so instead control is passed to method_missing, which gets the name of the method that was called, as well as whatever arguments were passed.

method_missing then converts the method name from a symbol to a string, and parses it as a Roman number, returning the output as an integer.

show/hide this revision's text 1

Ruby doesn't have any type enforcement, and likewise doesn't do any checking as to what methods an object has at runtime, because this can be dynamically changed as the application runs.

What method_missing does, is let you intercept and handle calls to methods that don't exist for a given object. This provides the under-the-hood power behind pretty much every DSL (domain-specific language) written in Ruby.

In the case of the example, every one of 'r.iv', 'r.mm', and so on is actually a method call to the Roman object. Of course, it doesn't have an 'iv' or an 'mm' method, so instead control is passed to method_missing, which gets the name of the method that was called, as well as whatever arguments were passed.

method_missing then converts the method name from a symbol to a string, and parses it as a Roman number, returning the output as an integer.