numaflow_ruby 0.4.44-x86_64-linux → 0.6.0-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fe22535c25f21e7fe3e5fa9c46ad7856acbf413c61dc6b0bdbb58dd66242cb5
4
- data.tar.gz: 699f3f765da9721abbff01c0755db692636c8f1ac5c2074a394da850dca28bb2
3
+ metadata.gz: 7e155a90c90441afcb4cb43251633abd05c3c7aad74eadd1ecde547996e2e85a
4
+ data.tar.gz: 3c26a6b46bf664944a9e6f776f4817255e8c076daf12c8dc4aab8d61776c9bb9
5
5
  SHA512:
6
- metadata.gz: 996a901cff6074e68bd61b057e7e5ca45f4936b171dbdcede89fa13f1c923403cac580d9de4372e2ad3f9b9a92be94eced45b9b84f5cca00f02362738e6d8955
7
- data.tar.gz: 27f64c25c735ff60d20faf2ffd14d37c8719f19cb6bc3e9520ddf0dc9456f612e763e1c13ba9a53dd2b3411cd5582e7a3981d4bd50fd94bd8a2d886acbe893b5
6
+ metadata.gz: 2d088e9f2356f1d787c4885e50112c6e4e42807dd690ddab6156300e12b1887fc10bd6b12949284381c532a14f7fd1d0f57205a29c0454620f1678120a4aced2
7
+ data.tar.gz: b22e809a354095d50a5ba049ba2da2d4ccb2fc200c322524e13486b066be1e53164e0cfef51b224f1ee848772c873bf595c0197e615a5a3a1059ed6145e84c46
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.4.1
1
+ 4.0.6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NumaflowRuby
4
- VERSION = "0.4.44"
4
+ VERSION = "0.6.0"
5
5
  end
data/lib/numaflow_ruby.rb CHANGED
@@ -22,7 +22,7 @@ module NumaflowRuby
22
22
  NumaflowRuby.rust_respond_to_message(result, responder)
23
23
  rescue NumaflowRuby::ServerStopped
24
24
  break
25
- rescue StandardError
25
+ rescue
26
26
  Kernel.exit 1
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numaflow_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.44
4
+ version: 0.6.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Kyle Cooke
@@ -46,13 +46,12 @@ extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
48
  - ".rspec"
49
- - ".rubocop.yml"
50
49
  - ".ruby-version"
51
50
  - README.md
52
51
  - Rakefile
53
52
  - lib/numaflow_ruby.rb
54
- - lib/numaflow_ruby/3.3/numaflow_ruby.so
55
53
  - lib/numaflow_ruby/3.4/numaflow_ruby.so
54
+ - lib/numaflow_ruby/4.0/numaflow_ruby.so
56
55
  - lib/numaflow_ruby/version.rb
57
56
  - renovate.json
58
57
  - sig/numaflow_ruby.rbs
@@ -72,10 +71,10 @@ required_ruby_version: !ruby/object:Gem::Requirement
72
71
  requirements:
73
72
  - - ">="
74
73
  - !ruby/object:Gem::Version
75
- version: '3.3'
74
+ version: '3.4'
76
75
  - - "<"
77
76
  - !ruby/object:Gem::Version
78
- version: 3.5.dev
77
+ version: 4.1.dev
79
78
  required_rubygems_version: !ruby/object:Gem::Requirement
80
79
  requirements:
81
80
  - - ">="
data/.rubocop.yml DELETED
@@ -1,8 +0,0 @@
1
- AllCops:
2
- TargetRubyVersion: 3.0
3
-
4
- Style/StringLiterals:
5
- EnforcedStyle: double_quotes
6
-
7
- Style/StringLiteralsInInterpolation:
8
- EnforcedStyle: double_quotes