faraday 1.10.3 → 1.10.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/lib/faraday/autoload.rb +8 -6
- data/lib/faraday/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 41cebae56fde7ef704543fcb80cc60c1c69694e540489d03d3882d5b3776c056
|
|
4
|
+
data.tar.gz: 70069a1f1e36c058c982987914910fa6563dcbaad08a6278295d5bd754b72fee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bbf15956af42768f1df10f6677b455e8c43def534d1510f85a4b5a6e9c32896f37cea2ce6d927f2cd84e4b26967d95705a71f05e6ae85f638f27a3487d44b596
|
|
7
|
+
data.tar.gz: 1eab4e96fe13971b7144121d93963fb49140ef16725987f5f778f64182bdaace0024742b24c6a6965b5d127d613e2992bc949256d0eacecd346275efe4dc4809
|
data/lib/faraday/autoload.rb
CHANGED
|
@@ -67,13 +67,14 @@ module Faraday
|
|
|
67
67
|
class Request
|
|
68
68
|
extend AutoloadHelper
|
|
69
69
|
autoload_all 'faraday/request',
|
|
70
|
-
UrlEncoded: 'url_encoded',
|
|
71
|
-
Multipart: 'multipart',
|
|
72
|
-
Retry: 'retry',
|
|
73
70
|
Authorization: 'authorization',
|
|
74
71
|
BasicAuthentication: 'basic_authentication',
|
|
72
|
+
Instrumentation: 'instrumentation',
|
|
73
|
+
Json: 'json',
|
|
74
|
+
Multipart: 'multipart',
|
|
75
|
+
Retry: 'retry',
|
|
75
76
|
TokenAuthentication: 'token_authentication',
|
|
76
|
-
|
|
77
|
+
UrlEncoded: 'url_encoded'
|
|
77
78
|
end
|
|
78
79
|
|
|
79
80
|
# Response represents the returned value of a sent Faraday request.
|
|
@@ -81,7 +82,8 @@ module Faraday
|
|
|
81
82
|
class Response
|
|
82
83
|
extend AutoloadHelper
|
|
83
84
|
autoload_all 'faraday/response',
|
|
84
|
-
|
|
85
|
-
Logger: 'logger'
|
|
85
|
+
Json: 'json',
|
|
86
|
+
Logger: 'logger',
|
|
87
|
+
RaiseError: 'raise_error'
|
|
86
88
|
end
|
|
87
89
|
end
|
data/lib/faraday/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: faraday
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- "@technoweenie"
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2024-09-20 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: faraday-em_http
|
|
@@ -268,7 +268,7 @@ licenses:
|
|
|
268
268
|
- MIT
|
|
269
269
|
metadata:
|
|
270
270
|
homepage_uri: https://lostisland.github.io/faraday
|
|
271
|
-
changelog_uri: https://github.com/lostisland/faraday/releases/tag/v1.10.
|
|
271
|
+
changelog_uri: https://github.com/lostisland/faraday/releases/tag/v1.10.4
|
|
272
272
|
source_code_uri: https://github.com/lostisland/faraday
|
|
273
273
|
bug_tracker_uri: https://github.com/lostisland/faraday/issues
|
|
274
274
|
post_install_message:
|