quickfix_ruby_ud 2.0.7-x86_64-linux → 2.0.8-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 -0
- metadata +3 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 885451b6b436affd2af5559217045a4aff9a9171772b364e36a1960e7399942d
         | 
| 4 | 
            +
              data.tar.gz: 860a5c5df83694c62e687633a409ca9dbb9d3201bb1a19e81bf9e86b43cc7e7f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: c2268bbd47617f9a670d5fc5d12449dc736505c4af6c082764559cb44a49bef14c11a02c95f9a09fd8b12c262601eb83525b94dda4cd736a57ace3fd19695ab9
         | 
| 7 | 
            +
              data.tar.gz: 6f8eb7d068cd092e2f13b62ada72ac3b84ae78de9c79fea9be1f4cf0dc7857225be52bf0ddb8b53c408d7fba63c9e286361ec2fb646ab860f1e5dd867fcd009e
         | 
    
        data/ext/quickfix/extconf.rb
    CHANGED
    
    | @@ -53,11 +53,14 @@ def fetch_openssl_dir | |
| 53 53 | 
             
            end
         | 
| 54 54 |  | 
| 55 55 | 
             
            # Set flags
         | 
| 56 | 
            +
            # TODO(tckerr) confirm -std=c++20 isn't needed (it broke compilation on the linux targets)
         | 
| 56 57 | 
             
            cxxflags = '-std=c++2a -DHAVE_SSL=1 -DHAVE_POSTGRESQL=1'
         | 
| 57 58 | 
             
            pg_include_dir = fetch_pg_include_dir
         | 
| 58 59 | 
             
            openssl_dir = fetch_openssl_dir
         | 
| 59 60 |  | 
| 60 61 | 
             
            cppflags = "-I#{openssl_dir}/include -I#{pg_include_dir}"
         | 
| 62 | 
            +
             | 
| 63 | 
            +
            # TODO(tckerr) confirm -lssl and -lcrypto aren't needed (they broke compilation on the linux targets)
         | 
| 61 64 | 
             
            ldflags = "-L#{openssl_dir}/lib"
         | 
| 62 65 |  | 
| 63 66 | 
             
            puts "Using OpenSSL from: #{openssl_dir}"
         | 
    
        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. | 
| 4 | 
            +
              version: 2.0.8
         | 
| 5 5 | 
             
            platform: x86_64-linux
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Oren Miller
         | 
| 8 8 | 
             
            - Tom Kerr
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2025-04- | 
| 11 | 
            +
            date: 2025-04-23 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies: []
         | 
| 13 13 | 
             
            description: FIX (Financial Information eXchange) protocol implementation
         | 
| 14 14 | 
             
            email: tom.kerr@underdogfantasy.com
         | 
| @@ -227,6 +227,7 @@ rdoc_options: | |
| 227 227 | 
             
            - "--exclude=ext"
         | 
| 228 228 | 
             
            require_paths:
         | 
| 229 229 | 
             
            - lib
         | 
| 230 | 
            +
            - lib/3.3
         | 
| 230 231 | 
             
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 231 232 | 
             
              requirements:
         | 
| 232 233 | 
             
              - - ">="
         |