class YARD::Verifier

def method_missing(sym, *args, &block)

Passes any method calls to the object from the {#call}
def method_missing(sym, *args, &block)
  if object.respond_to?(sym)
    object.send(sym, *args, &block)
  else
    super
  end
end