Method: Brief::Document#method_missing

Defined in:
lib/brief/document.rb

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



262
263
264
265
266
267
268
# File 'lib/brief/document.rb', line 262

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