module Draper::AutomaticDelegation

def method_missing(method, *args, &block)

to call the method on the `object`.
the parent decorator class. If no method exists on the parent class, it will then try
method calls to `object` as well. Calling `super` will first try to call the method on
Delegates missing instance methods to the source object. Note: This will delegate `super`
def method_missing(method, *args, &block)
unless delegatable?(method)
ethod, *args, &block)