@quo-systems/quo 0.2.12 → 0.2.13
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.
- package/README.md +3 -3
- package/SPEC.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,11 +7,11 @@ device, or on another planet.
|
|
|
7
7
|
It is three words, two of which are beings, and two edges.
|
|
8
8
|
Nothing else is Quo.
|
|
9
9
|
|
|
10
|
-
- **Harbor
|
|
10
|
+
- **Harbor.** The program a device runs to boot wards. Owns the wire and the
|
|
11
11
|
operating system. Not a being.
|
|
12
|
-
- **Ward
|
|
12
|
+
- **Ward.** One process of its harbor. A being plus ward functions. Keeps
|
|
13
13
|
beings and judges its door.
|
|
14
|
-
- **Being
|
|
14
|
+
- **Being.** One ordinary object, one voice.
|
|
15
15
|
|
|
16
16
|
[`SPEC.md`](SPEC.md) is the truth. It is self-contained and
|
|
17
17
|
assumes nothing from any other document, this README included. Read it first.
|
package/SPEC.md
CHANGED
|
@@ -1656,8 +1656,8 @@ failure.
|
|
|
1656
1656
|
|
|
1657
1657
|
```
|
|
1658
1658
|
src/being/ the Being side. types, the base class, silence, the digest.
|
|
1659
|
-
src/ward/ the ward. door, seal, arithmetic, heirs, stance, owner, partition, cells, allowance.
|
|
1660
|
-
src/harbor/ the
|
|
1659
|
+
src/ward/ the ward. the Ground contract, door, seal, arithmetic, heirs, stance, owner, partition, cells, allowance.
|
|
1660
|
+
src/harbor/ the memory harbor, the store, the reach, the dialer and the harbor core.
|
|
1661
1661
|
src/conformance/ the behaviours any ward must show, and the fixed beings they are shown with.
|
|
1662
1662
|
test/ the suites.
|
|
1663
1663
|
vectors/ fixed inputs and outputs: the arithmetic, Quo's own framing, the frames on the wire.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quo-systems/quo",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "Quo: an object asks another object and gets an answer, without knowing where it is. Being, Ward, Harbor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"quo",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"./package.json": "./package.json"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
-
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
41
|
+
"build": "rm -rf dist && tsc -p tsconfig.build.json && cp ../../papers/SPEC.md SPEC.md",
|
|
42
42
|
"test": "node --test \"test/*.test.ts\"",
|
|
43
43
|
"check:terrain": "node --test \"test/terrain/*.test.ts\"",
|
|
44
44
|
"prepublishOnly": "test \"$QUO_GATED\" = 1 || { echo 'publish from the root, gated once: npm run release' >&2; exit 1; }"
|