nng-ruby 0.1.0 → 0.1.1
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/CHANGELOG.md +6 -0
- data/ext/nng/libnng.so.1.8.0 +0 -0
- data/lib/nng/version.rb +1 -1
- data/nng.gemspec +4 -4
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1bfda71adf6f8940b91fb2f63abf60824bf9c2cb3d4d2450e69cd72cc53cdc58
|
4
|
+
data.tar.gz: 4e8c3a6a3cd5477f4f6bb5cbf98dbf956ed23427793b5bf7fd0541c8dce8d960
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14ecced0a21a3c982c90ac14569049ba40e8bb80f7b0979d7de5c0465bf4df9a535d68ce237ab421915fb6e2055e3677c4d81bfc642ede2bea1969dacfddc1ac
|
7
|
+
data.tar.gz: f9ba8ec8c3917ce41bc0004d3b8506a7cb833d3e8dbfed001ddcbb4f429f11851c9b6ae40b540bb4ca49fac0ac06f15bebb6ddd8630469a50332112b93d3ae9c
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.1.1] - 2025-10-03
|
9
|
+
|
10
|
+
### Changed
|
11
|
+
- Published to GitHub repository
|
12
|
+
- Updated gem packaging to include source code
|
13
|
+
|
8
14
|
## [0.1.0] - 2025-10-03
|
9
15
|
|
10
16
|
### Added
|
Binary file
|
data/lib/nng/version.rb
CHANGED
data/nng.gemspec
CHANGED
@@ -13,13 +13,13 @@ Gem::Specification.new do |spec|
|
|
13
13
|
'Supports all scalability protocols (Pair, Push/Pull, Pub/Sub, Req/Rep, ' \
|
14
14
|
'Surveyor/Respondent, Bus) and transports (TCP, IPC, Inproc, WebSocket, TLS). ' \
|
15
15
|
'Includes bundled libnng shared library.'
|
16
|
-
spec.homepage = 'https://github.com/
|
16
|
+
spec.homepage = 'https://github.com/Hola-QingYi/nng-ruby'
|
17
17
|
spec.license = 'MIT'
|
18
18
|
spec.required_ruby_version = '>= 2.5.0'
|
19
19
|
|
20
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
21
|
-
spec.metadata['source_code_uri'] = 'https://github.com/
|
22
|
-
spec.metadata['changelog_uri'] = 'https://github.com/
|
21
|
+
spec.metadata['source_code_uri'] = 'https://github.com/Hola-QingYi/nng-ruby'
|
22
|
+
spec.metadata['changelog_uri'] = 'https://github.com/Hola-QingYi/nng-ruby/blob/main/CHANGELOG.md'
|
23
23
|
spec.metadata['documentation_uri'] = 'https://rubydoc.info/gems/nng-ruby'
|
24
24
|
|
25
25
|
# Specify which files should be added to the gem when it is released.
|
@@ -59,7 +59,7 @@ Gem::Specification.new do |spec|
|
|
59
59
|
│ socket.listen("tcp://127.0.0.1:5555") │
|
60
60
|
│ │
|
61
61
|
│ Documentation: https://rubydoc.info/gems/nng-ruby │
|
62
|
-
│ Examples: https://github.com/
|
62
|
+
│ Examples: https://github.com/Hola-QingYi/nng-ruby │
|
63
63
|
└───────────────────────────────────────────────────────────┘
|
64
64
|
MSG
|
65
65
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nng-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Claude Code
|
@@ -97,6 +97,7 @@ files:
|
|
97
97
|
- examples/pair.rb
|
98
98
|
- examples/pubsub.rb
|
99
99
|
- examples/reqrep.rb
|
100
|
+
- ext/nng/libnng.so.1.8.0
|
100
101
|
- lib/nng.rb
|
101
102
|
- lib/nng/errors.rb
|
102
103
|
- lib/nng/ffi.rb
|
@@ -105,20 +106,20 @@ files:
|
|
105
106
|
- lib/nng/socket.rb
|
106
107
|
- lib/nng/version.rb
|
107
108
|
- nng.gemspec
|
108
|
-
homepage: https://github.com/
|
109
|
+
homepage: https://github.com/Hola-QingYi/nng-ruby
|
109
110
|
licenses:
|
110
111
|
- MIT
|
111
112
|
metadata:
|
112
|
-
homepage_uri: https://github.com/
|
113
|
-
source_code_uri: https://github.com/
|
114
|
-
changelog_uri: https://github.com/
|
113
|
+
homepage_uri: https://github.com/Hola-QingYi/nng-ruby
|
114
|
+
source_code_uri: https://github.com/Hola-QingYi/nng-ruby
|
115
|
+
changelog_uri: https://github.com/Hola-QingYi/nng-ruby/blob/main/CHANGELOG.md
|
115
116
|
documentation_uri: https://rubydoc.info/gems/nng-ruby
|
116
117
|
post_install_message: |
|
117
118
|
┌───────────────────────────────────────────────────────────┐
|
118
119
|
│ Thank you for installing nng-ruby gem! │
|
119
120
|
│ │
|
120
121
|
│ NNG (nanomsg-next-generation) Ruby bindings │
|
121
|
-
│ Version: 0.1.
|
122
|
+
│ Version: 0.1.1 │
|
122
123
|
│ │
|
123
124
|
│ Quick start: │
|
124
125
|
│ require 'nng' │
|
@@ -126,7 +127,7 @@ post_install_message: |
|
|
126
127
|
│ socket.listen("tcp://127.0.0.1:5555") │
|
127
128
|
│ │
|
128
129
|
│ Documentation: https://rubydoc.info/gems/nng-ruby │
|
129
|
-
│ Examples: https://github.com/
|
130
|
+
│ Examples: https://github.com/Hola-QingYi/nng-ruby │
|
130
131
|
└───────────────────────────────────────────────────────────┘
|
131
132
|
rdoc_options: []
|
132
133
|
require_paths:
|