nmspec 1.7.1 → 1.7.2
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/README.md +9 -11
- data/lib/nmspec/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a5b035091a0516537af7cd39096e77932333d53ca448ed1f78c890ca2dfb2077
|
4
|
+
data.tar.gz: b2184d260ec5e1d5ac6ddb7ad006027b79f8e65e08c4b7a7f55e3741ebcc7aa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e9731b8927a877c666630bb8ce61acc3d158e5df7a1a546a4d4ab7f7101cce6145be692336a658c781d46aef1259b80bbc220fdfc5737d36d1a8fde73eef874
|
7
|
+
data.tar.gz: d607d19b6d5a199eba3d318926852fd29e22796171ed995614fea4b8ade42dce3251fcaca11d51f3aa3fb5cedc41842d630e0e2cc8791edb255e5cbf9a3ed82d
|
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# `nmspec`
|
2
2
|
|
3
3
|
`nmspec` (network message specification) is a combination of binary
|
4
|
-
serialization and network communication (
|
5
|
-
|
6
|
-
|
4
|
+
serialization and network communication (basically [rpc][rpc]), designed to
|
5
|
+
make creating TCP protocols between two ends of a network connection easier to
|
6
|
+
specify and keep consistent..
|
7
7
|
|
8
8
|
A centralized YAML file is used to describe the types and messages passed
|
9
9
|
between network peers, and from that description TCP peer code (a "messenger")
|
@@ -12,12 +12,6 @@ described in `nmspec` are used to create both the reading and writing sides
|
|
12
12
|
of the connection, so that a single source code file contains everything you
|
13
13
|
need for a network peer, regardless of if it's the client or server.
|
14
14
|
|
15
|
-
## Demo video explaining how to use this gem
|
16
|
-
|
17
|
-
<a href="https://youtu.be/Ib6c6BEl82c">
|
18
|
-
<img src="https://s3.us-east-2.amazonaws.com/vim4evar.com/nmspec-imgs/link-to-demo-video.png" />
|
19
|
-
</a>
|
20
|
-
|
21
15
|
## Motivation
|
22
16
|
|
23
17
|
`nmspec` was specifically created to help with with a problem I was facing,
|
@@ -51,8 +45,8 @@ purpose.
|
|
51
45
|
|
52
46
|
As a starting point this gem supports network messengers in these two languages:
|
53
47
|
|
54
|
-
* [Ruby 3.
|
55
|
-
* [GDScript 3.
|
48
|
+
* [Ruby 3.x][ruby-lang]
|
49
|
+
* [GDScript 3.x.stable][gdscript]
|
56
50
|
|
57
51
|
`nmspec` came out of a online game project where the backend is written in
|
58
52
|
Ruby, and the frontend is built with the Godot game engine, which includes the
|
@@ -284,6 +278,9 @@ Output program code is generated in the following manner:
|
|
284
278
|
|
285
279
|
## Preliminary research, and comparison to other methods
|
286
280
|
|
281
|
+
`nmspec` is basically [rpc][rpc], except it also bundles code generators, and
|
282
|
+
not just the rpc message/protocol specifications.
|
283
|
+
|
287
284
|
I started with researching how other people had designed network protocol
|
288
285
|
description languages/tools in the past, beginning with [Prolac][prolac]. This
|
289
286
|
lead me to other network messaging tools, binary serialization in general,
|
@@ -300,6 +297,7 @@ config file, so that a programmer needs only to write a single artifact (a
|
|
300
297
|
`.nmspec` file), and get the code for their target programming language(s)
|
301
298
|
generated automatically.
|
302
299
|
|
300
|
+
[rpc]: https://en.wikipedia.org/wiki/Remote_procedure_call
|
303
301
|
[ruby-lang]: https://www.ruby-lang.org/
|
304
302
|
[gdscript]: https://docs.godotengine.org/en/stable/getting_started/scripting/gdscript/gdscript_basics.html
|
305
303
|
[generals.io]: https://generals.io/
|
data/lib/nmspec/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
NMSPEC_GEM_VERSION = '1.7.
|
1
|
+
NMSPEC_GEM_VERSION = '1.7.2'
|