Method: Vonage::Response#method_missing

Defined in:
lib/vonage/response.rb

#method_missing(name, *args) ⇒ Object



20
21
22
23
24
# File 'lib/vonage/response.rb', line 20

def method_missing(name, *args)
  return super if @entity.nil?

  @entity.public_send(name, *args)
end