logstash-filter-fix_protocol 0.3.1 → 0.3.2
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/README.md +39 -0
- data/lib/logstash/filters/fix_message.rb +10 -3
- data/logstash-filter-fix_protocol.gemspec +1 -1
- data/spec/filters/fix_message_spec.rb +48 -0
- data/spec/fixtures/FIX44.xml +6595 -0
- data/spec/fixtures/message_types/execution_report_with_party_sub_ids.txt +1 -0
- metadata +6 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
8=FIX.4.49=099635=849=FOOO56=BAR34=1505128=BAZ115=BLAH52=20170620-19:22:0060=20170620-19:22:00150=F31=9999.11111151=0541=2017110932=150000000662=1.179999948423=4663=464=201706215975=FOOBAR:20170620:1073:66=9999.1111137=FOOBAR:20170620:1072:638=150000000218=14.2591147256548=FOOBAR:20170620:1073:639=2159=0669=9999.11111699=912796MB2460=6761=1223=014=92500000015=USD75=20170620106=TREASURY BILL 17=FOOBAR:20170620:1072:6:12167=TBILL48=912796KX6198=7771:20170620:1072:6470=US381=12345678922=154=27014=2155=[N/A]118=123456789453=4448=FOOBAR447=D452=1448=JDR4:282205447=D452=11802=2523=27803=4523=25906803=4000448=ACME CORPORATION447=D452=13448=BBUNNY:13785105447=D452=3610=001
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-fix_protocol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Connamara Systems
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-07-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -158,10 +158,12 @@ files:
|
|
|
158
158
|
- spec/filters/fix_message_spec.rb
|
|
159
159
|
- spec/filters/fix_protocol_spec.rb
|
|
160
160
|
- spec/fixtures/FIX42.xml
|
|
161
|
+
- spec/fixtures/FIX44.xml
|
|
161
162
|
- spec/fixtures/FIX50SP1.xml
|
|
162
163
|
- spec/fixtures/FIXT11.xml
|
|
163
164
|
- spec/fixtures/fix-input.log
|
|
164
165
|
- spec/fixtures/message_types/execution_report.txt
|
|
166
|
+
- spec/fixtures/message_types/execution_report_with_party_sub_ids.txt
|
|
165
167
|
- spec/fixtures/message_types/heartbeat.txt
|
|
166
168
|
- spec/fixtures/message_types/logon.txt
|
|
167
169
|
- spec/fixtures/message_types/market_data_snapshot.txt
|
|
@@ -203,10 +205,12 @@ test_files:
|
|
|
203
205
|
- spec/filters/fix_message_spec.rb
|
|
204
206
|
- spec/filters/fix_protocol_spec.rb
|
|
205
207
|
- spec/fixtures/FIX42.xml
|
|
208
|
+
- spec/fixtures/FIX44.xml
|
|
206
209
|
- spec/fixtures/FIX50SP1.xml
|
|
207
210
|
- spec/fixtures/FIXT11.xml
|
|
208
211
|
- spec/fixtures/fix-input.log
|
|
209
212
|
- spec/fixtures/message_types/execution_report.txt
|
|
213
|
+
- spec/fixtures/message_types/execution_report_with_party_sub_ids.txt
|
|
210
214
|
- spec/fixtures/message_types/heartbeat.txt
|
|
211
215
|
- spec/fixtures/message_types/logon.txt
|
|
212
216
|
- spec/fixtures/message_types/market_data_snapshot.txt
|