faraday-retry 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +3 -2
- data/lib/faraday/retry/version.rb +1 -1
- metadata +5 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33876eebdcf891d8e68944fe19b22382e671230be647393bb082d38edc7533f0
|
|
4
|
+
data.tar.gz: 4e6844e99aa563782446f29918fd06e47c223d695a85e7a4ce88a5cb1a8c7b42
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a117f57a2929d934ba92b518764d9a7fee436fe64c3246b1daeca52ac0a7c267a051bafbd0eb5019873a2dd64db19ec6b2991b6990b5dfc1713f98c1642a5bc
|
|
7
|
+
data.tar.gz: 2c25733218de63ee2c5dad8bb676c74e9d4b9722ae9e49a8e4f8f8697b70f4ac6653633f8a32e816a399cc78f18ab885a61851e93bda2825863fc665ace94174
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -147,8 +147,9 @@ Then, run `bin/test` to run the tests.
|
|
|
147
147
|
|
|
148
148
|
To install this gem onto your local machine, run `rake build`.
|
|
149
149
|
|
|
150
|
-
|
|
151
|
-
|
|
150
|
+
### Releasing a new version
|
|
151
|
+
|
|
152
|
+
To release a new version, make a commit with a message such as "Bumped to 0.0.2", and change the _Unreleased_ heading in `CHANGELOG.md` to a heading like "0.0.2 (2022-01-01)", and then use GitHub Releases to author a release. A GitHub Actions workflow then publishes a new gem to [RubyGems.org](https://rubygems.org/gems/faraday-retry).
|
|
152
153
|
|
|
153
154
|
## Contributing
|
|
154
155
|
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: faraday-retry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mattia Giuffrida
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies: []
|
|
13
12
|
description: 'Catches exceptions and retries each request a limited number of times.
|
|
14
13
|
|
|
@@ -31,12 +30,11 @@ licenses:
|
|
|
31
30
|
- MIT
|
|
32
31
|
metadata:
|
|
33
32
|
bug_tracker_uri: https://github.com/lostisland/faraday-retry/issues
|
|
34
|
-
changelog_uri: https://github.com/lostisland/faraday-retry/blob/v1.0.
|
|
35
|
-
documentation_uri: http://www.rubydoc.info/gems/faraday-retry/1.0.
|
|
33
|
+
changelog_uri: https://github.com/lostisland/faraday-retry/blob/v1.0.4/CHANGELOG.md
|
|
34
|
+
documentation_uri: http://www.rubydoc.info/gems/faraday-retry/1.0.4
|
|
36
35
|
homepage_uri: https://github.com/lostisland/faraday-retry
|
|
37
36
|
source_code_uri: https://github.com/lostisland/faraday-retry
|
|
38
37
|
wiki_uri: https://github.com/lostisland/faraday-retry/wiki
|
|
39
|
-
post_install_message:
|
|
40
38
|
rdoc_options: []
|
|
41
39
|
require_paths:
|
|
42
40
|
- lib
|
|
@@ -45,17 +43,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
45
43
|
- - ">="
|
|
46
44
|
- !ruby/object:Gem::Version
|
|
47
45
|
version: '2.4'
|
|
48
|
-
- - "<"
|
|
49
|
-
- !ruby/object:Gem::Version
|
|
50
|
-
version: '4'
|
|
51
46
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
47
|
requirements:
|
|
53
48
|
- - ">="
|
|
54
49
|
- !ruby/object:Gem::Version
|
|
55
50
|
version: '0'
|
|
56
51
|
requirements: []
|
|
57
|
-
rubygems_version:
|
|
58
|
-
signing_key:
|
|
52
|
+
rubygems_version: 4.0.3
|
|
59
53
|
specification_version: 4
|
|
60
54
|
summary: Catches exceptions and retries each request a limited number of times
|
|
61
55
|
test_files: []
|