Class: RestMan::Request::Init::CookieJar
- Inherits:
-
ActiveMethod::Base
- Object
- ActiveMethod::Base
- RestMan::Request::Init::CookieJar
- Defined in:
- lib/restman/request/init/cookie_jar.rb
Overview
:include: _doc/lib/restman/request/init/cookie_jar.rdoc
Instance Method Summary collapse
Instance Method Details
#call ⇒ Object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/restman/request/init/cookie_jar.rb', line 11 def call return .dup if .is_a?(HTTP::CookieJar) .each do |key, value| .add (key, value) end end |