Method: WCC::Data::Response#method_missing

Defined in:
lib/wcc/data/response.rb

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



16
17
18
19
20
21
22
# File 'lib/wcc/data/response.rb', line 16

def method_missing(method, *args, &block)
  if raw.respond_to?(method)
    raw.public_send(method, *args, &block)
  else
    super
  end
end