Method: YARD::Verifier#method_missing

Defined in:
lib/yard/verifier.rb

#method_missing(sym, *args, &block) ⇒ Object

Passes any method calls to the object from the #call


63
64
65
66
67
68
69
# File 'lib/yard/verifier.rb', line 63

def method_missing(sym, *args, &block)
  if object.respond_to?(sym)
    object.send(sym, *args, &block)
  else
    super
  end
end