DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Ruby: Extending Mechanize's Cookie Methods
The included Methods only allow saving and loading to Files, but sometimes it is more useful to load/save it from a String:
class WWW::Mechanize::CookieJar
public
def save_str
return URI.escape(YAML::dump(@jar))
end
def load_str(str)
@jar = YAML::load(URI.unescape(str))
end
end





