module Draper::AutomaticDelegation
def method_missing(method, *args, &block)
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)