quickfix_ruby_ud 2.0.10 → 2.0.11

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/ext/quickfix/extconf.rb +3 -3
  3. metadata +5 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3994345e5cedbf9a938e30f74fb44f8c0a98079130db6ca9d83a1f59302efe68
4
- data.tar.gz: c5614d6ca4782816f3dc3bd7e9099254e50c3eed8c86105125be0a75b612589d
3
+ metadata.gz: 76eaca5c5c1834254799e1809eb73c93231412609c0d8a3a3480c03da22ea098
4
+ data.tar.gz: 87bfbda0b738ea1f38100a692f11dea84ef1021f0d2af26162f4ef08721be296
5
5
  SHA512:
6
- metadata.gz: b015f819fcd36ecdd54a48800b624d482638cc8b03aab2293fdebcdbbf17115517b46fab36aae755d0675e9313d55b8ad2e5d1d2e60d790c72341618387e8c47
7
- data.tar.gz: 50b50a1a7271502b5fd9101d53c9cd7caa94726db2980f406aaf87700bab0178044e9521fa548e9664ed1bf9a0df3c5d3b8dd85600fd9486c6519ecac2809708
6
+ metadata.gz: 8231e9681aa46fec700be19ad0c8116dabbd61a2f9e0d264367b399cbf27c4047a91f1acf261555cd97dbf424c5178acd732a4d4bbfb99c5ad0eeec3ba7398ed
7
+ data.tar.gz: bf86a14469feac34e109ae5c940150dd29eb6ccd6bde5763f1a9021684d469587fdfc049f215d6c923b925b9012012f487d2739ddc0af8585504fe9c7237d688
@@ -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
 
metadata CHANGED
@@ -1,12 +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: ruby
6
6
  authors:
7
7
  - Oren Miller
8
8
  - Tom Kerr
9
- autorequire:
9
+ - Michael Newman
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
  date: 2026-02-20 00:00:00.000000000 Z
@@ -216,25 +216,23 @@ homepage: https://www.quickfixengine.org
216
216
  licenses:
217
217
  - Apache Style
218
218
  metadata: {}
219
- post_install_message:
220
219
  rdoc_options:
221
220
  - "--exclude=ext"
222
221
  require_paths:
223
222
  - lib
224
- - lib/3.3
223
+ - lib/3.4
225
224
  required_ruby_version: !ruby/object:Gem::Requirement
226
225
  requirements:
227
226
  - - ">="
228
227
  - !ruby/object:Gem::Version
229
- version: 3.3.0
228
+ version: 3.4.0
230
229
  required_rubygems_version: !ruby/object:Gem::Requirement
231
230
  requirements:
232
231
  - - ">="
233
232
  - !ruby/object:Gem::Version
234
233
  version: '0'
235
234
  requirements: []
236
- rubygems_version: 3.5.3
237
- signing_key:
235
+ rubygems_version: 4.0.3
238
236
  specification_version: 4
239
237
  summary: QuickFIX
240
238
  test_files: []