wreq 1.2.3-aarch64-linux → 1.2.4-aarch64-linux
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/examples/emulate_request.rb +1 -1
- data/lib/wreq_ruby/3.3/wreq_ruby.so +0 -0
- data/lib/wreq_ruby/3.4/wreq_ruby.so +0 -0
- data/lib/wreq_ruby/4.0/wreq_ruby.so +0 -0
- data/script/build_windows_gnu.ps1 +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 936d9cb40c7ac2e374399467f5c9adc55c1fd09d8deea4fe90de6880c1f795b2
|
|
4
|
+
data.tar.gz: fd45170a2ba4f32c91d2d9ab400a37185238d63aafac91d5fce6628fd3851ae7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00df3013fb3a63af15a53e2e11345c0a75edc6f5f79d76fc635d334e29fbd5acea018dab16ab4330f3fac773217c26d6651956cc69830b84d871d3c89e722cad
|
|
7
|
+
data.tar.gz: 2fb7e6fc83a24d0ae7e0f0700e1e3f4a54bef73c9ddd0824c3371d0b2a543d9f36fe7b56bb016599ac90cd536fcfcb49ff687ca072de02163d121149a0cb0aad
|
data/examples/emulate_request.rb
CHANGED
|
@@ -11,7 +11,7 @@ require_relative "../lib/wreq"
|
|
|
11
11
|
# Set when creating the Wreq::Client instance.
|
|
12
12
|
# All requests from this client will use the specified emulation unless overridden.
|
|
13
13
|
client = Wreq::Client.new(emulation: Wreq::Emulation.new(
|
|
14
|
-
profile: Wreq::Profile::
|
|
14
|
+
profile: Wreq::Profile::Chrome149,
|
|
15
15
|
platform: Wreq::Platform::MacOS,
|
|
16
16
|
http2: true,
|
|
17
17
|
headers: true
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -154,6 +154,13 @@ Invoke-Step "Compile native extension" {
|
|
|
154
154
|
ridk exec ruby -S bundle exec rake compile
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
Invoke-Step "Sync versioned extension" {
|
|
158
|
+
$rubyMinor = & ruby -e "print RUBY_VERSION[/\A\d+\.\d+/]"
|
|
159
|
+
$dest = "lib\wreq_ruby\$rubyMinor"
|
|
160
|
+
New-Item -ItemType Directory -Force $dest | Out-Null
|
|
161
|
+
Copy-Item "lib\wreq_ruby\wreq_ruby.so" (Join-Path $dest "wreq_ruby.so") -Force
|
|
162
|
+
}
|
|
163
|
+
|
|
157
164
|
Invoke-Step "Verify extension loads" {
|
|
158
165
|
ruby -Ilib -rwreq -e "puts Wreq::VERSION; puts Wreq::Client.new.class"
|
|
159
166
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wreq
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.4
|
|
5
5
|
platform: aarch64-linux
|
|
6
6
|
authors:
|
|
7
7
|
- SearchApi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: An easy and powerful Ruby HTTP client with advanced browser fingerprinting
|
|
14
14
|
that accurately emulates Chrome, Edge, Firefox, Safari, Opera, and OkHttp with precise
|