faraday-cookie_jar 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ ## 0.0.2
2
+
3
+ - Repackaging
4
+ - Typo in README
5
+
6
+ ## 0.0.1
7
+
8
+ - Initial release
data/README.md CHANGED
@@ -4,7 +4,7 @@ Faraday middleware to manage client-side cookies
4
4
 
5
5
  ## Description
6
6
 
7
- This gem is a piece of Faraday middleware that adds client-side Cookies management, using [cookirjar gem](https://github.com/dwaite/cookiejar).
7
+ This gem is a piece of Faraday middleware that adds client-side Cookies management, using [cookiejar gem](https://github.com/dwaite/cookiejar).
8
8
 
9
9
  ## Installation
10
10
 
@@ -35,4 +35,4 @@ conn.get "/bar" # sends cookie
35
35
 
36
36
  ## Author
37
37
 
38
- Tatsuhiko Miyagawa
38
+ Tatsuhiko Miyagawa
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'faraday-cookie_jar/version'
4
+ require 'faraday/cookie_jar/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "faraday-cookie_jar"
@@ -1,2 +1 @@
1
1
  require 'faraday/cookie_jar'
2
- require 'faraday-cookie_jar/version'
@@ -1,5 +1,5 @@
1
1
  module Faraday
2
2
  module CookieJarVersion
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday-cookie_jar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -131,14 +131,15 @@ extensions: []
131
131
  extra_rdoc_files: []
132
132
  files:
133
133
  - .gitignore
134
+ - CHANGELOG.md
134
135
  - Gemfile
135
136
  - LICENSE.txt
136
137
  - README.md
137
138
  - Rakefile
138
139
  - faraday-cookie_jar.gemspec
139
140
  - lib/faraday-cookie_jar.rb
140
- - lib/faraday-cookie_jar/version.rb
141
141
  - lib/faraday/cookie_jar.rb
142
+ - lib/faraday/cookie_jar/version.rb
142
143
  - spec/faraday-cookie_jar/cookie_jar_spec.rb
143
144
  - spec/spec_helper.rb
144
145
  - spec/support/fake_app.rb