quickfix_ruby_ud 2.0.7 → 2.0.9

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 +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e5120f1bfc89a75f924b795da1c48e29c526a95b943bbd5e4deb13fc1e78578
4
- data.tar.gz: 6da11fd94214a1203ff805a0be13b96557b9a9049a32594c075b00e5e25310fa
3
+ metadata.gz: 3b985ff5e5542bf642e8b3c8f00e150e25ae41561474381d95e27635dc523da0
4
+ data.tar.gz: e123c9b36d592ea930be526a6b2dc151ff16b0fbd50c4e13e50a6bb0fa786710
5
5
  SHA512:
6
- metadata.gz: d6f1ae38e1721eb0eb60bec4e06a4523b111717c2856b6075863f34dc892022daae5c440e23c239de118ac4768cc5b446905fe2a6e4b4d1846caf9b7d197c0e4
7
- data.tar.gz: '08179d127d0345d881513b9d8a1d2dd0e73d7b45584b675424584b4b7e65b585df01c7ea02b2c1bb24857d4d8df4d2e5d546e4829104145c34f759160c679d4a'
6
+ metadata.gz: a79d1db4996bb167f07fea80f93234b21cb2a1c30942779113a1a506620304a93f484352262aaf257efe402269ddf20adf33f955b7b00b7bfb88c3b37db15d31
7
+ data.tar.gz: 6b1e0547ca3beb73fba9eb0719e0a75a9d54378811ff4e037794d26cdc7aba0b3cbbda98d9b13a0a76263e3f3ccf47aaa1271a7bf5325976ccc219084849864d
@@ -1,6 +1,5 @@
1
1
  require 'mkmf'
2
2
  require 'open3'
3
- require 'rake/extensiontask'
4
3
 
5
4
  dir_config('quickfix', ['.'], '.')
6
5
 
@@ -53,11 +52,14 @@ def fetch_openssl_dir
53
52
  end
54
53
 
55
54
  # Set flags
55
+ # TODO(tckerr) confirm -std=c++20 isn't needed (it broke compilation on the linux targets)
56
56
  cxxflags = '-std=c++2a -DHAVE_SSL=1 -DHAVE_POSTGRESQL=1'
57
57
  pg_include_dir = fetch_pg_include_dir
58
58
  openssl_dir = fetch_openssl_dir
59
59
 
60
60
  cppflags = "-I#{openssl_dir}/include -I#{pg_include_dir}"
61
+
62
+ # TODO(tckerr) confirm -lssl and -lcrypto aren't needed (they broke compilation on the linux targets)
61
63
  ldflags = "-L#{openssl_dir}/lib"
62
64
 
63
65
  puts "Using OpenSSL from: #{openssl_dir}"
@@ -72,5 +74,3 @@ $CPPFLAGS += " #{cppflags}"
72
74
  $LDFLAGS += " #{ldflags}"
73
75
 
74
76
  create_makefile('quickfix')
75
-
76
- Rake::ExtensionTask.new('quickfix')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quickfix_ruby_ud
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oren Miller
8
8
  - Tom Kerr
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-21 00:00:00.000000000 Z
11
+ date: 2025-04-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: FIX (Financial Information eXchange) protocol implementation
14
14
  email: tom.kerr@underdogfantasy.com
@@ -219,6 +219,7 @@ rdoc_options:
219
219
  - "--exclude=ext"
220
220
  require_paths:
221
221
  - lib
222
+ - lib/3.3
222
223
  required_ruby_version: !ruby/object:Gem::Requirement
223
224
  requirements:
224
225
  - - ">="