Method: Brief::Document#method_missing

Defined in:
lib/brief/document.rb

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



321
322
323
324
325
326
327
# File 'lib/brief/document.rb', line 321

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