quickfix_ruby_ud 2.0.10-x86_64-linux → 2.0.12-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: ad25e811b4108a9b6e540355227a59ee87cffe17e6cf2f5fe09e54a7c670c352
4
- data.tar.gz: 11a65bc5e4b1a3c60e2ce66f0c982c923fd284ce198ae37f5eb791c90e3c44f1
3
+ metadata.gz: a9e8572723159810558506b7d62703ef1e5f339909eea8f2b5f40ffe2b324be6
4
+ data.tar.gz: 2a5255db176c45ec7502be0d7d4c60e64e0f919eb3ec38ff828543a550b89dc9
5
5
  SHA512:
6
- metadata.gz: de0d850de217cd6053b5817be10b9ca692bac2d107e3b560e45a2ae335de20d191353aeace6d9ae5b75bab182dc6d3f047c02eedb1c8898f889574523081fbc6
7
- data.tar.gz: f42759e6921d0ed72c7293fe60e69fc001b6b7fc1d2e476bb8edb8f3ba1d619bc4245116517e4d82767e0d3da6e8ad9f0686d0c17d62e29cb5cb0c8615845013
6
+ metadata.gz: 75177330546d4704f90152c00ecc61e0c4bcf77e9441a6f40366b595c72116cbc65008f0d62c0d86f361b240307bb6ca477fecd47432ebce04ec6259d2915750
7
+ data.tar.gz: 4270099eda232b7b630e58411b1bda2a3fa2134bc0fe5bccc8f1452255097bcab275cbaede4bb92a57256760081fde398b3b381d81d4455e348bc497b9c3af61
@@ -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
 
Binary file
data/lib/quickfix50sp2.rb CHANGED
@@ -412484,4 +412484,41 @@ class MarketSettlementReport < Message
412484
412484
  end
412485
412485
  end
412486
412486
  end
412487
+
412488
+ class AcceptQuote < Message
412489
+ def initialize
412490
+ super
412491
+ getHeader().setField( Quickfix::MsgType.new("UA") )
412492
+ end
412493
+
412494
+ class NoPartyIDs < Quickfix::Group
412495
+ def initialize
412496
+ order = Quickfix::IntArray.new(6)
412497
+ order[0] = 448
412498
+ order[1] = 447
412499
+ order[2] = 452
412500
+ order[3] = 2376
412501
+ order[4] = 802
412502
+ order[5] = 0
412503
+ super(453, 448, order)
412504
+ end
412505
+
412506
+ class NoPartySubIDs < Quickfix::Group
412507
+ def initialize
412508
+ order = Quickfix::IntArray.new(3)
412509
+ order[0] = 523
412510
+ order[1] = 803
412511
+ order[2] = 0
412512
+ super(802, 523, order)
412513
+ end
412514
+ end
412515
+ end
412516
+ end
412517
+
412518
+ class AcceptQuoteStatus < Message
412519
+ def initialize
412520
+ super
412521
+ getHeader().setField( Quickfix::MsgType.new("UC") )
412522
+ end
412523
+ end
412487
412524
  end
@@ -79507,4 +79507,17 @@ module Quickfix
79507
79507
  end
79508
79508
  end
79509
79509
 
79510
+ class AcceptQuoteStatus < Quickfix::IntField
79511
+ def AcceptQuoteStatus.field
79512
+ return 21025
79513
+ end
79514
+ def initialize(data = nil)
79515
+ if( data == nil )
79516
+ super(21025)
79517
+ else
79518
+ super(21025, data)
79519
+ end
79520
+ end
79521
+ end
79522
+
79510
79523
  end
metadata CHANGED
@@ -1,14 +1,15 @@
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.12
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Oren Miller
8
8
  - Tom Kerr
9
+ - Michael Newman
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2026-02-20 00:00:00.000000000 Z
12
+ date: 2026-04-02 00:00:00.000000000 Z
12
13
  dependencies: []
13
14
  description: FIX (Financial Information eXchange) protocol implementation
14
15
  email: tom.kerr@underdogfantasy.com
@@ -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.3/quickfix.so DELETED
Binary file
data/lib/3.4/quickfix.so DELETED
Binary file