quickfix_ruby_ud 2.0.10-aarch64-linux → 2.0.11-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe40a021d159f4dfdacffc5e58d1d477555b8899e328571e28bca807d04db921
4
- data.tar.gz: fd00f13d6179854f9d70edf084a6dd45f294457d9f9e16737a5481dd3324f408
3
+ metadata.gz: 450881c55a79c8e77d06ff05dca240cb62481bb9dddc3cd03520267ab59153f5
4
+ data.tar.gz: af58e330bdd0bce920596b8391012e8f245cc0aba9b713e4f472c6055a840cdd
5
5
  SHA512:
6
- metadata.gz: 84bd1a87538e95e38781f00483e8136423cbdf79d5e9363fdee3973af57cc01b6f060da1946a849e660fac79aee7cff0c24cb33bc263570c6ed1f8c79088292c
7
- data.tar.gz: d203cc9a1dc5b9a3530f807917e52363a3dc82744eedeedf1a3a8cc238427b40ca246e3015a7cbdfd992cf7c9268e2b61c8ae7ecdde76694185b5dcbfa240451
6
+ metadata.gz: ed0792c73caec80b91062dafe7af54836bb9c87ed063a885eb3b1472f9248f636dacbfc1d2f0ecbaca91eb3de7a70d124d45841eff58111bc21ee8f6cc34e139
7
+ data.tar.gz: 0275c0ef87eb069fe5a282e8457183741e40ecc710288173d107e4aa8e714fbad29680d20469243eade5fa0b2777735e49ee04611c43ea8ca32146ecd233714f
@@ -5,9 +5,9 @@ dir_config('quickfix', ['.'], '.')
5
5
 
6
6
  # Helpers to fetch config values
7
7
  def fetch_pg_include_dir
8
- return ENV['PG_INCLUDE_DIR'] if ENV['PG_INCLUDE_DIR'] && Dir.exist?(ENV['PG_INCLUDE_DIR'])
9
-
10
- stdout, _ = Open3.capture2('pg_config --includedir')
8
+ pgconfig = with_config('pg-config') || with_config('pg_config') || find_executable('pg_config')
9
+
10
+ stdout, _ = Open3.capture2("#{pgconfig} --includedir")
11
11
  stdout.strip
12
12
  end
13
13
 
data/lib/quickfix.so ADDED
Binary file
metadata CHANGED
@@ -1,11 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quickfix_ruby_ud
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.10
4
+ version: 2.0.11
5
5
  platform: aarch64-linux
6
6
  authors:
7
7
  - Oren Miller
8
8
  - Tom Kerr
9
+ - Michael Newman
9
10
  bindir: bin
10
11
  cert_chain: []
11
12
  date: 2026-02-20 00:00:00.000000000 Z
@@ -184,15 +185,7 @@ files:
184
185
  - ext/quickfix/scope_guard.hpp
185
186
  - ext/quickfix/stdint_msvc.h
186
187
  - ext/quickfix/strptime.h
187
- - lib/2.4/quickfix.so
188
- - lib/2.5/quickfix.so
189
- - lib/2.6/quickfix.so
190
- - lib/2.7/quickfix.so
191
- - lib/3.0/quickfix.so
192
- - lib/3.1/quickfix.so
193
- - lib/3.2/quickfix.so
194
- - lib/3.3/quickfix.so
195
- - lib/3.4/quickfix.so
188
+ - lib/quickfix.so
196
189
  - lib/quickfix40.rb
197
190
  - lib/quickfix41.rb
198
191
  - lib/quickfix42.rb
@@ -227,12 +220,12 @@ rdoc_options:
227
220
  - "--exclude=ext"
228
221
  require_paths:
229
222
  - lib
230
- - lib/3.3
223
+ - lib/3.4
231
224
  required_ruby_version: !ruby/object:Gem::Requirement
232
225
  requirements:
233
226
  - - ">="
234
227
  - !ruby/object:Gem::Version
235
- version: '2.4'
228
+ version: '3.4'
236
229
  - - "<"
237
230
  - !ruby/object:Gem::Version
238
231
  version: 3.5.dev
@@ -242,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
242
235
  - !ruby/object:Gem::Version
243
236
  version: '0'
244
237
  requirements: []
245
- rubygems_version: 3.6.2
238
+ rubygems_version: 4.0.3
246
239
  specification_version: 4
247
240
  summary: QuickFIX
248
241
  test_files: []
data/lib/2.4/quickfix.so DELETED
Binary file
data/lib/2.5/quickfix.so DELETED
Binary file
data/lib/2.6/quickfix.so DELETED
Binary file
data/lib/2.7/quickfix.so DELETED
Binary file
data/lib/3.0/quickfix.so DELETED
Binary file
data/lib/3.1/quickfix.so DELETED
Binary file
data/lib/3.2/quickfix.so DELETED
Binary file
data/lib/3.3/quickfix.so DELETED
Binary file
data/lib/3.4/quickfix.so DELETED
Binary file