quickfix_ruby_ud 2.0.10 → 2.0.12
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/quickfix50sp2.rb +37 -0
- data/lib/quickfix_fields.rb +13 -0
- metadata +6 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c3aedc2718d49f3777fef016234e5e8e2205e206008953bd53b3927104cbb15
|
|
4
|
+
data.tar.gz: 43e1e934dfa221b8781bf3d709fe3b90d194773168396ccae71bf30e1c91a533
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc40d239fe82b3a1b743c844f807b16a0f540f34296610f920060824b183b84b2e53748865d0e40342e5fbdb63aadd3783f2cbe98b007f386a45b6fcb03009e6
|
|
7
|
+
data.tar.gz: cb72e8687e1ae838630d310ff59b9e3686d4a7d470ea54b655d39ce0fcff18f780afbbc210e01565c15fa047718cd1fc014dfe2790c7740323b462c0808b8659
|
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
|
|
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
|
data/lib/quickfix_fields.rb
CHANGED
|
@@ -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,15 +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.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oren Miller
|
|
8
8
|
- Tom Kerr
|
|
9
|
-
|
|
9
|
+
- Michael Newman
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-02
|
|
12
|
+
date: 2026-04-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: FIX (Financial Information eXchange) protocol implementation
|
|
15
15
|
email: tom.kerr@underdogfantasy.com
|
|
@@ -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.
|
|
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.
|
|
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:
|
|
237
|
-
signing_key:
|
|
235
|
+
rubygems_version: 4.0.7
|
|
238
236
|
specification_version: 4
|
|
239
237
|
summary: QuickFIX
|
|
240
238
|
test_files: []
|