quickfix_ruby_ud 2.0.9-x86_64-linux → 2.0.11-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 +4 -4
- data/ext/quickfix/extconf.rb +3 -3
- data/lib/{3.2/quickfix.so → quickfix.so} +0 -0
- data/lib/quickfix50sp2.rb +43 -0
- data/lib/quickfix_fields.rb +117 -0
- metadata +7 -14
- data/lib/2.4/quickfix.so +0 -0
- data/lib/2.5/quickfix.so +0 -0
- data/lib/2.6/quickfix.so +0 -0
- data/lib/2.7/quickfix.so +0 -0
- data/lib/3.0/quickfix.so +0 -0
- data/lib/3.1/quickfix.so +0 -0
- data/lib/3.3/quickfix.so +0 -0
- data/lib/3.4/quickfix.so +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 711e4c30c1a603ef3f4d050e9b8c054f948e9645b859f3fbfd650bb08679c372
|
|
4
|
+
data.tar.gz: 7e7442d815bb5ed613a9438b95f95450dfd0d12a46c1194644afa861e91a1e9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79dc9fb351df630429ebe7916427b44c832217f6c62c7ef1e90195346d86280004bd91e49a7fd0d1026a63c74c78012e94b528e0d857325f74e70d613c8ce65b
|
|
7
|
+
data.tar.gz: 28ceb82624f99c737fd49530ac82106a5a2e091c920b282cc069d2c6d8a49c113e70210f52b61e7293583bbce9a01f4c4ad06cbf21b30a6eb7b5a8d2f2294f95
|
data/ext/quickfix/extconf.rb
CHANGED
|
@@ -5,9 +5,9 @@ dir_config('quickfix', ['.'], '.')
|
|
|
5
5
|
|
|
6
6
|
# Helpers to fetch config values
|
|
7
7
|
def fetch_pg_include_dir
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
stdout, _ = Open3.capture2(
|
|
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
|
@@ -412441,4 +412441,47 @@ class PayManagementRequestAck < Message
|
|
|
412441
412441
|
getHeader().setField( Quickfix::MsgType.new("DZ") )
|
|
412442
412442
|
end
|
|
412443
412443
|
end
|
|
412444
|
+
|
|
412445
|
+
class MarketSettlementReport < Message
|
|
412446
|
+
def initialize
|
|
412447
|
+
super
|
|
412448
|
+
getHeader().setField( Quickfix::MsgType.new("UMS") )
|
|
412449
|
+
end
|
|
412450
|
+
|
|
412451
|
+
class NoMarketSettlementPartyIDs < Quickfix::Group
|
|
412452
|
+
def initialize
|
|
412453
|
+
order = Quickfix::IntArray.new(7)
|
|
412454
|
+
order[0] = 20109
|
|
412455
|
+
order[1] = 20110
|
|
412456
|
+
order[2] = 704
|
|
412457
|
+
order[3] = 705
|
|
412458
|
+
order[4] = 1703
|
|
412459
|
+
order[5] = 136
|
|
412460
|
+
order[6] = 0
|
|
412461
|
+
super(20108, 20109, order)
|
|
412462
|
+
end
|
|
412463
|
+
|
|
412464
|
+
class NoCollateralAmounts < Quickfix::Group
|
|
412465
|
+
def initialize
|
|
412466
|
+
order = Quickfix::IntArray.new(3)
|
|
412467
|
+
order[0] = 1704
|
|
412468
|
+
order[1] = 1705
|
|
412469
|
+
order[2] = 0
|
|
412470
|
+
super(1703, 1704, order)
|
|
412471
|
+
end
|
|
412472
|
+
end
|
|
412473
|
+
|
|
412474
|
+
class NoMiscFees < Quickfix::Group
|
|
412475
|
+
def initialize
|
|
412476
|
+
order = Quickfix::IntArray.new(5)
|
|
412477
|
+
order[0] = 137
|
|
412478
|
+
order[1] = 138
|
|
412479
|
+
order[2] = 139
|
|
412480
|
+
order[3] = 891
|
|
412481
|
+
order[4] = 0
|
|
412482
|
+
super(136, 137, order)
|
|
412483
|
+
end
|
|
412484
|
+
end
|
|
412485
|
+
end
|
|
412486
|
+
end
|
|
412444
412487
|
end
|
data/lib/quickfix_fields.rb
CHANGED
|
@@ -79390,4 +79390,121 @@ module Quickfix
|
|
|
79390
79390
|
end
|
|
79391
79391
|
end
|
|
79392
79392
|
|
|
79393
|
+
class SettlementPrice < Quickfix::DoubleField
|
|
79394
|
+
def SettlementPrice.field
|
|
79395
|
+
return 730
|
|
79396
|
+
end
|
|
79397
|
+
def initialize(data = nil)
|
|
79398
|
+
if( data == nil )
|
|
79399
|
+
super(730)
|
|
79400
|
+
else
|
|
79401
|
+
super(730, data)
|
|
79402
|
+
end
|
|
79403
|
+
end
|
|
79404
|
+
end
|
|
79405
|
+
|
|
79406
|
+
class NoCollateralAmountChanges < Quickfix::IntField
|
|
79407
|
+
def NoCollateralAmountChanges.field
|
|
79408
|
+
return 1703
|
|
79409
|
+
end
|
|
79410
|
+
def initialize(data = nil)
|
|
79411
|
+
if( data == nil )
|
|
79412
|
+
super(1703)
|
|
79413
|
+
else
|
|
79414
|
+
super(1703, data)
|
|
79415
|
+
end
|
|
79416
|
+
end
|
|
79417
|
+
end
|
|
79418
|
+
|
|
79419
|
+
class CollateralAmountChange < Quickfix::DoubleField
|
|
79420
|
+
def CollateralAmountChange.field
|
|
79421
|
+
return 1704
|
|
79422
|
+
end
|
|
79423
|
+
def initialize(data = nil)
|
|
79424
|
+
if( data == nil )
|
|
79425
|
+
super(1704)
|
|
79426
|
+
else
|
|
79427
|
+
super(1704, data)
|
|
79428
|
+
end
|
|
79429
|
+
end
|
|
79430
|
+
end
|
|
79431
|
+
|
|
79432
|
+
class MarketSettlementReportID < Quickfix::StringField
|
|
79433
|
+
def MarketSettlementReportID.field
|
|
79434
|
+
return 20105
|
|
79435
|
+
end
|
|
79436
|
+
def initialize(data = nil)
|
|
79437
|
+
if( data == nil )
|
|
79438
|
+
super(20105)
|
|
79439
|
+
else
|
|
79440
|
+
super(20105, data)
|
|
79441
|
+
end
|
|
79442
|
+
end
|
|
79443
|
+
end
|
|
79444
|
+
|
|
79445
|
+
class TotNumMarketSettlementReports < Quickfix::IntField
|
|
79446
|
+
def TotNumMarketSettlementReports.field
|
|
79447
|
+
return 20106
|
|
79448
|
+
end
|
|
79449
|
+
def initialize(data = nil)
|
|
79450
|
+
if( data == nil )
|
|
79451
|
+
super(20106)
|
|
79452
|
+
else
|
|
79453
|
+
super(20106, data)
|
|
79454
|
+
end
|
|
79455
|
+
end
|
|
79456
|
+
end
|
|
79457
|
+
|
|
79458
|
+
class MarketResult < Quickfix::StringField
|
|
79459
|
+
def MarketResult.field
|
|
79460
|
+
return 20107
|
|
79461
|
+
end
|
|
79462
|
+
def initialize(data = nil)
|
|
79463
|
+
if( data == nil )
|
|
79464
|
+
super(20107)
|
|
79465
|
+
else
|
|
79466
|
+
super(20107, data)
|
|
79467
|
+
end
|
|
79468
|
+
end
|
|
79469
|
+
end
|
|
79470
|
+
|
|
79471
|
+
class NoMarketSettlementPartyIDs < Quickfix::IntField
|
|
79472
|
+
def NoMarketSettlementPartyIDs.field
|
|
79473
|
+
return 20108
|
|
79474
|
+
end
|
|
79475
|
+
def initialize(data = nil)
|
|
79476
|
+
if( data == nil )
|
|
79477
|
+
super(20108)
|
|
79478
|
+
else
|
|
79479
|
+
super(20108, data)
|
|
79480
|
+
end
|
|
79481
|
+
end
|
|
79482
|
+
end
|
|
79483
|
+
|
|
79484
|
+
class MarketSettlementPartyID < Quickfix::StringField
|
|
79485
|
+
def MarketSettlementPartyID.field
|
|
79486
|
+
return 20109
|
|
79487
|
+
end
|
|
79488
|
+
def initialize(data = nil)
|
|
79489
|
+
if( data == nil )
|
|
79490
|
+
super(20109)
|
|
79491
|
+
else
|
|
79492
|
+
super(20109, data)
|
|
79493
|
+
end
|
|
79494
|
+
end
|
|
79495
|
+
end
|
|
79496
|
+
|
|
79497
|
+
class MarketSettlementPartyRole < Quickfix::IntField
|
|
79498
|
+
def MarketSettlementPartyRole.field
|
|
79499
|
+
return 20110
|
|
79500
|
+
end
|
|
79501
|
+
def initialize(data = nil)
|
|
79502
|
+
if( data == nil )
|
|
79503
|
+
super(20110)
|
|
79504
|
+
else
|
|
79505
|
+
super(20110, data)
|
|
79506
|
+
end
|
|
79507
|
+
end
|
|
79508
|
+
end
|
|
79509
|
+
|
|
79393
79510
|
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.
|
|
4
|
+
version: 2.0.11
|
|
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:
|
|
12
|
+
date: 2026-02-20 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/
|
|
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.
|
|
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: '
|
|
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:
|
|
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
|