requests_ruby 1.0.2 → 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 +70 -1
- data/README.md +157 -8
- data/lib/requests/adapters.rb +116 -22
- data/lib/requests/api.rb +10 -5
- data/lib/requests/cookies.rb +92 -19
- data/lib/requests/hpack.rb +241 -0
- data/lib/requests/http2.rb +469 -0
- data/lib/requests/sessions.rb +75 -19
- data/lib/requests/utils.rb +18 -0
- data/lib/requests/version.rb +1 -1
- data/lib/requests.rb +2 -0
- metadata +10 -4
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: requests_ruby
|
|
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
|
+
- monji024
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-25 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: minitest
|
|
@@ -26,6 +27,7 @@ dependencies:
|
|
|
26
27
|
description: A stdlib-only Ruby HTTP client modeled after python's requests library.
|
|
27
28
|
Sessions, cookies, redirects, auth (Basic/Bearer/Digest), multipart uploads, streaming
|
|
28
29
|
responses, hooks, and a friendly exception hierarchy - no external gems required.
|
|
30
|
+
email:
|
|
29
31
|
executables: []
|
|
30
32
|
extensions: []
|
|
31
33
|
extra_rdoc_files: []
|
|
@@ -40,6 +42,8 @@ files:
|
|
|
40
42
|
- lib/requests/auth.rb
|
|
41
43
|
- lib/requests/cookies.rb
|
|
42
44
|
- lib/requests/exceptions.rb
|
|
45
|
+
- lib/requests/hpack.rb
|
|
46
|
+
- lib/requests/http2.rb
|
|
43
47
|
- lib/requests/models.rb
|
|
44
48
|
- lib/requests/sessions.rb
|
|
45
49
|
- lib/requests/status_codes.rb
|
|
@@ -56,6 +60,7 @@ metadata:
|
|
|
56
60
|
changelog_uri: https://github.com/monji024/requests_ruby/blob/main/CHANGELOG.md
|
|
57
61
|
bug_tracker_uri: https://github.com/monji024/requests_ruby/issues
|
|
58
62
|
documentation_uri: https://rubydoc.info/gems/requests_ruby
|
|
63
|
+
post_install_message:
|
|
59
64
|
rdoc_options: []
|
|
60
65
|
require_paths:
|
|
61
66
|
- lib
|
|
@@ -70,7 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
75
|
- !ruby/object:Gem::Version
|
|
71
76
|
version: '0'
|
|
72
77
|
requirements: []
|
|
73
|
-
rubygems_version: 3.
|
|
78
|
+
rubygems_version: 3.3.15
|
|
79
|
+
signing_key:
|
|
74
80
|
specification_version: 4
|
|
75
81
|
summary: Requests is a simple, yet elegant, HTTP library.
|
|
76
82
|
test_files: []
|