nng-ruby 0.1.2 → 1.0.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 +78 -45
- data/Gemfile +10 -10
- data/LICENSE +21 -21
- data/README.md +1201 -1200
- data/Rakefile +22 -22
- data/examples/pair.rb +48 -48
- data/examples/protobuf_advanced.rb +322 -322
- data/examples/protobuf_demo.rb +340 -340
- data/examples/protobuf_example.rb +374 -374
- data/examples/protobuf_simple.rb +191 -191
- data/examples/protobuf_thread.rb +236 -236
- data/examples/pubsub.rb +51 -51
- data/examples/reqrep.rb +54 -54
- data/ext/nng/extconf.rb +80 -71
- data/ext/nng/libnng.so.1.11.0 +0 -0
- data/ext/nng/nng.dll +0 -0
- data/lib/nng/errors.rb +48 -48
- data/lib/nng/ffi.rb +508 -445
- data/lib/nng/message.rb +151 -151
- data/lib/nng/protocols.rb +96 -96
- data/lib/nng/socket.rb +196 -196
- data/lib/nng/version.rb +5 -5
- data/lib/nng.rb +52 -52
- data/nng.gemspec +67 -67
- metadata +5 -4
- data/ext/nng/libnng.so.1.8.0 +0 -0
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: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- QingYi
|
@@ -118,7 +118,8 @@ files:
|
|
118
118
|
- examples/pubsub.rb
|
119
119
|
- examples/reqrep.rb
|
120
120
|
- ext/nng/extconf.rb
|
121
|
-
- ext/nng/libnng.so.1.
|
121
|
+
- ext/nng/libnng.so.1.11.0
|
122
|
+
- ext/nng/nng.dll
|
122
123
|
- lib/nng.rb
|
123
124
|
- lib/nng/errors.rb
|
124
125
|
- lib/nng/ffi.rb
|
@@ -140,7 +141,7 @@ post_install_message: |
|
|
140
141
|
│ Thank you for installing nng-ruby gem! │
|
141
142
|
│ │
|
142
143
|
│ NNG (nanomsg-next-generation) Ruby bindings │
|
143
|
-
│ Version: 0.1
|
144
|
+
│ Version: 1.0.1 │
|
144
145
|
│ │
|
145
146
|
│ Quick start: │
|
146
147
|
│ require 'nng' │
|
@@ -164,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
165
|
- !ruby/object:Gem::Version
|
165
166
|
version: '0'
|
166
167
|
requirements: []
|
167
|
-
rubygems_version: 3.6.
|
168
|
+
rubygems_version: 3.6.9
|
168
169
|
specification_version: 4
|
169
170
|
summary: Ruby bindings for NNG (nanomsg-next-generation)
|
170
171
|
test_files: []
|
data/ext/nng/libnng.so.1.8.0
DELETED
Binary file
|