Method: Croesus::WebResponse#method_missing

Defined in:
lib/croesus/web_client/web_response.rb

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



58
59
60
61
62
63
64
# File 'lib/croesus/web_client/web_response.rb', line 58

def method_missing(name, *args, &block)
  if @headers.respond_to?(name)
    @headers.send(name, *args, &block)
  else
    super
  end
end