You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a CookieJar class which can organize cookies, and query the cookies for a given URL, matching the URL's host and path to the cookie's Domain and Path constraints. This will allow us to add a cookie_jar: option to Ronin::Support::Network::HTTP#initialize and transparently track session cookies.
The text was updated successfully, but these errors were encountered:
@Aniket-508 unfortunately, no. In the past whenever I assigned an issue to a new contributor they always disappeared and the issue never got completed.
@Aniket-508 feel free to start working on this issue, but be warned there are a lot of edge-cases with implementing a CookieJar claass, such as querying cookies by Domain (.example.com also matches sub-domains of example.com) and Path attributes. This code will need full YARD documentation and RSpec tests, which should test every edge-case of every public method. I'm not sure how much Ruby experience you have, but will probably take at least a week of work.
Add a
CookieJar
class which can organize cookies, and query the cookies for a given URL, matching the URL's host and path to the cookie'sDomain
andPath
constraints. This will allow us to add acookie_jar:
option toRonin::Support::Network::HTTP#initialize
and transparently track session cookies.The text was updated successfully, but these errors were encountered: