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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -11
  3. data/lib/nmspec/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25522e3d076357896974bf11f009dc4b173cc5007b8a65be45bd8c43b07ac11a
4
- data.tar.gz: 2e2b1dd041beefa969cbe11c43a112ad5b94b37ac111790deed80c8e4a77213c
3
+ metadata.gz: a5b035091a0516537af7cd39096e77932333d53ca448ed1f78c890ca2dfb2077
4
+ data.tar.gz: b2184d260ec5e1d5ac6ddb7ad006027b79f8e65e08c4b7a7f55e3741ebcc7aa1
5
5
  SHA512:
6
- metadata.gz: fd89cb542156d4355301124fe9fa2ecdaad9f64317d681ea4840924a95c3f60cf022431dfc79e86147d61ca14469e65ed6306e3d650be266789d248cf5f0e9a9
7
- data.tar.gz: fd6fb9409dd17f7361f9d3b9b41ca54b8fd6a21df498a2c9dd375161616103b71ed435736d51b6d39c2cdd2bc70dfe418ab7caf7051cf8fe4d782e0e5fc8452a
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 (two things that are usually treated
5
- separately), designed to make creating TCP protocols between two ends of a
6
- network connection easier to specify and keep consistent..
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.0.x][ruby-lang]
55
- * [GDScript 3.4.stable][gdscript]
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/
@@ -1 +1 @@
1
- NMSPEC_GEM_VERSION = '1.7.1'
1
+ NMSPEC_GEM_VERSION = '1.7.2'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nmspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Lunt