Class: HTTP::CookieJar
- Inherits:
-
Object
- Object
- HTTP::CookieJar
- Includes:
- Enumerable[Cookie]
- Defined in:
- sig/http.rbs
Instance Method Summary collapse
- #add ⇒ void
- #cookies ⇒ Array[Cookie]
- #delete ⇒ void
- #each {|arg0| ... } ⇒ Object
- #empty? ⇒ Boolean
-
#initialize ⇒ CookieJar
constructor
A new instance of CookieJar.
- #parse ⇒ void
Constructor Details
#initialize ⇒ CookieJar
Returns a new instance of CookieJar.
1217 |
# File 'sig/http.rbs', line 1217 def initialize: () -> void |
Instance Method Details
#add ⇒ void
This method returns an undefined value.
1219 |
# File 'sig/http.rbs', line 1219 def add: (Cookie) -> void |
#delete ⇒ void
This method returns an undefined value.
1220 |
# File 'sig/http.rbs', line 1220 def delete: (Cookie) -> void |
#each ⇒ void #each ⇒ Enumerator[Cookie, void]
1221 1222 |
# File 'sig/http.rbs', line 1221 def each: () { (Cookie) -> void } -> void | () -> Enumerator[Cookie, void] |
#empty? ⇒ Boolean
1223 |
# File 'sig/http.rbs', line 1223 def empty?: () -> bool |
#parse ⇒ void
This method returns an undefined value.
1218 |
# File 'sig/http.rbs', line 1218 def parse: (String, String) -> void |