faraday-follow_redirects 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e496bdd1ac0161f28c7d2aadd510df36acd4f3e53957f45d5ad1362c4c24fca
4
- data.tar.gz: f96e61f56296d999223f1c4b7f358bf9824e4f900bf3b1cabf94a98e7bba0be6
3
+ metadata.gz: b396f715a7f02a5e9ab476eefedeb86e6a5b0b3f82eda286463d29edd9c024c6
4
+ data.tar.gz: c8d78bbc37c431d332b7acaf9caf4a6f5b855da4b91f9ce4037f3d6032ad3163
5
5
  SHA512:
6
- metadata.gz: 9a2a6d486e1ab5109073d41ddfc8489bcafcd860e063d8b3d2169f83757ca62eeed76348769ebdfa9fcae5eb9221f860bd5173969a9d77f9b7031dc64940dcd5
7
- data.tar.gz: e879e1d501b2bbf4085a87fc4439722d376689e9767a624582d2523b1b4d16611094bbee1645ad7ec8eafe50bf7a97aca4aed39897ad4f6c8dd8e10103abeb52
6
+ metadata.gz: 6449a2732a976a7f41af86817f80a16285f028b4c00484826b4c449f56b7e3eee202a24073c775486cbc2f17c15d0da30be8789ed3da98972b2fbe4b9a9961f9
7
+ data.tar.gz: d32af1854712ee1aa0322633899813e5d181e1e932a5a1334f625e1f4e500542e42d1924817b98c38ae4dc3bd5dd89865c05c09a05c2854a895cdc48e5c9c48b
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  * …
6
6
 
7
+ ## 0.2.0 (2022-03-07)
8
+
9
+ * explicitly require faraday when loading this gem
10
+
7
11
  ## 0.1.0 (2022-02-24)
8
12
 
9
- * Initial release
13
+ * Initial release
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Faraday Follow Redirects
2
2
 
3
3
  [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/tisba/faraday-follow-redirects/CI)](https://github.com/tisba/faraday-follow-redirects/actions?query=branch%3Amain)
4
- [![Gem](https://img.shields.io/gem/v/faraday-follow-redirects.svg?style=flat-square)](https://rubygems.org/gems/faraday-follow-redirects)
4
+ [![Gem](https://img.shields.io/gem/v/faraday-follow_redirects.svg?style=flat-square)](https://rubygems.org/gems/faraday-follow_redirects)
5
5
  [![License](https://img.shields.io/github/license/tisba/faraday-follow-redirects.svg?style=flat-square)](LICENSE.md)
6
6
 
7
7
  Faraday 2.x compatible extraction of `FaradayMiddleware::FollowRedirects`. If you are still using Faraday 1.x, check out https://github.com/lostisland/faraday_middleware.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Faraday
4
4
  module FollowRedirects
5
- VERSION = '0.1.0'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'faraday'
3
4
  require_relative 'follow_redirects/middleware'
4
5
  require_relative 'follow_redirects/redirect_limit_reached'
5
6
  require_relative 'follow_redirects/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faraday-follow_redirects
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Cohnen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-03-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -177,8 +177,8 @@ licenses:
177
177
  - MIT
178
178
  metadata:
179
179
  bug_tracker_uri: https://github.com/tisba/faraday-follow_redirects/issues
180
- changelog_uri: https://github.com/tisba/faraday-follow_redirects/blob/v0.1.0/CHANGELOG.md
181
- documentation_uri: http://www.rubydoc.info/gems/faraday-follow_redirects/0.1.0
180
+ changelog_uri: https://github.com/tisba/faraday-follow_redirects/blob/v0.2.0/CHANGELOG.md
181
+ documentation_uri: http://www.rubydoc.info/gems/faraday-follow_redirects/0.2.0
182
182
  homepage_uri: https://github.com/tisba/faraday-follow_redirects
183
183
  rubygems_mfa_required: 'true'
184
184
  source_code_uri: https://github.com/tisba/faraday-follow_redirects
@@ -201,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
201
201
  - !ruby/object:Gem::Version
202
202
  version: '0'
203
203
  requirements: []
204
- rubygems_version: 3.3.3
204
+ rubygems_version: 3.3.7
205
205
  signing_key:
206
206
  specification_version: 4
207
207
  summary: Faraday 2.x compatible extraction of FaradayMiddleware::FollowRedirects