wreq 1.2.3-x86_64-linux → 1.2.4-x86_64-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 774f9df419e74c17ce2198085a87f1b10734aea3007ed53050ecbfa3faf47716
4
- data.tar.gz: e6ad08ee194fe7c19d758bd3d88b4adb0f4f67c0fba0b0f0e18b474246aeeb75
3
+ metadata.gz: df007dbc147dcdcfb5efa8ca847be5de2e462de42f2e4cf82a9322077fc6f376
4
+ data.tar.gz: b378b84264639916dfff92b3a612f365773bcc847c0e970ed77aea6b19d3420e
5
5
  SHA512:
6
- metadata.gz: d66727ada24ea0b519f0ca2e54c6da0a45ed5ea40bb8b7c03c7ac94bd758936170b58c3ed7380b8de62c27d4399adcdf101155dd1548f792a797524f1eb8b895
7
- data.tar.gz: 5affefa924e48aae639014de5b1dd527f38c59d5bc1069e52e7ef3a8922d19470a1a0f7240b6ec1279e800777f8f40632cf1d6eba70ca97e418eb408f84f0c68
6
+ metadata.gz: 80521d933269ff86b0e77725d99cd22608374b718795bbb110d83260a2a873f0c69ec58c07259e25c09139edbd91702fde67d006ea241e37c430876ba47d8e39
7
+ data.tar.gz: 7e56fa970f8c4b7fbce7bba9fe986c922140408f5d8c36c2b2393beb2fe29b308932422c18f6b9dc26ff80571ded5cb56effb67b40227382f4dd6ae252bda566
@@ -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::Chrome142,
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.3
4
+ version: 1.2.4
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - SearchApi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-08 00:00:00.000000000 Z
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