numaflow_ruby 0.1.18-x86_64-linux-musl → 0.1.20-x86_64-linux-musl

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64ad35d721ff1669cc7b94a10d62d9d87d5fab864435de9a8716dee828aee9a0
4
- data.tar.gz: 514b798172126b2b24975e5427a69ea14cc1bbfa914613e947939436bdf91938
3
+ metadata.gz: 486a4ab867100a8a14baaa0fddbadabb2d4a71fd6abc244f9f0c5411b647bb0d
4
+ data.tar.gz: 828b81b9dbc61977d16eec53273ad05d864874a19c5b3cd48ef94d70d7075af0
5
5
  SHA512:
6
- metadata.gz: cf4c991409bac85e2685e827d52480747dc6449616ea6f9652f1f0383d9b427e35bac6ab823b51ac2a791fce5af1e5717d8d17f9c3a21db796670bc90a344105
7
- data.tar.gz: a036c2f224c96086e271647d0683f1da96cfd83ff27533cf6e778334c80cff600c33e46c96bfc0fa98ab9c91704d130f8eaa18d7ee6ea9681c5b1562dd6f1a7b
6
+ metadata.gz: 9e3a6e6770db325787569a00985bc57566995d7a51adb24449878ba61a5725c0be63df894c9671ca4a117afd20739d8b004acdfef5629e6ab7d22007eac5c8e6
7
+ data.tar.gz: 4798cf1551fb6933c40016a4b86ef47519574379a7518cc7ded4c2a10d1f9ff096b6a712edf15fb286ae0a1fd9b492d419ea17b8b6ca296fe9574ec746284da8
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NumaflowRuby
4
- VERSION = "0.1.18"
4
+ VERSION = "0.1.20"
5
5
  end
data/lib/numaflow_ruby.rb CHANGED
@@ -1,10 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "numaflow_ruby/version"
4
- versioned_path = File.join(__dir__, "numaflow_ruby", RUBY_VERSION, "numaflow_ruby.rb")
5
- if File.exist?(versioned_path)
4
+ MINOR_RUBY_VERSION = RUBY_VERSION.split(".").first(2).join(".")
5
+ versioned_path = File.join(__dir__, "numaflow_ruby", MINOR_RUBY_VERSION, "numaflow_ruby")
6
+ begin
6
7
  require versioned_path
7
- else
8
+ rescue LoadError
8
9
  require_relative "numaflow_ruby/numaflow_ruby"
9
10
  end
10
11
  # NumaflowRuby is a Ruby wrapper for Numaflow rust library, allowing you to create map servers in Ruby.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numaflow_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.20
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Kyle Cooke
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-07 00:00:00.000000000 Z
11
+ date: 2025-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler