Sha256: bd6e4d9dc2d9c314decec7a41a53abfce9f57d55a2fb9528fdca2ce6a689a83c
Contents?: true
Size: 663 Bytes
Versions: 1
Compression:
Stored size: 663 Bytes
Contents
# Faraday::CookieJar Faraday middleware to manage client-side cookies ## Description This gem is a piece of Faraday middleware that adds client-side Cookies management, using [cookirjar gem](https://github.com/dwaite/cookiejar). ## Installation Add this line to your application's Gemfile: gem 'faraday-cookie_jar' And then execute: $ bundle Or install it yourself as: $ gem install faraday-cookie_jar ## Usage ```ruby require 'faraday-cookie_jar' conn = Faraday.new(:url => "http://example.com") do |builder| builder.use :cookie_jar end conn.get "/foo" # gets cookie conn.get "/bar" # sends cookie ``` ## Author Tatsuhiko Miyagawa
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
faraday-cookie_jar-0.0.1 | README.md |