Skip to content

Commit fde660f

Browse files
committed
delete files and update
1 parent 5b9e0ba commit fde660f

File tree

9 files changed

+13
-225
lines changed

9 files changed

+13
-225
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ Feature-wise this is near beign complete. Still planning to integrate:
9999

100100
This registry takes and combines some ideas from Elixir’s [Registry](https://hexdocs.pm/elixir/Kernel.html), Erlang’s [pg](https://www.erlang.org/doc/apps/kernel/pg.html) and [Syn](https://github.com/ostinelli/syn).
101101

102+
## Alternatives
103+
104+
[Singularity](https://hexdocs.pm/singularity/) is a gleam library that offers registry capabilities but focusing more on singleton actors, therefore it is better suited for keeping track of actors that need to be passed around as configuration through your app.
105+
102106
## Installation
103107

104108
```sh

example-pubsub.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

example-subject-bag.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

gleam.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "chip"
2-
version = "0.6.1"
2+
version = "0.6.4"
33
description = "A Gleam registry library"
44
licences = ["Apache-2.0"]
55

@@ -10,6 +10,14 @@ repository = { type = "github", user = "chouzar", repo = "chip" }
1010
gleam = ">= 1.0.0"
1111
# links = [{ title = "Website", href = "https://gleam.run" }]
1212

13+
14+
[documentation]
15+
pages = [
16+
{ title = "General use-cases", path = "guides/general-use-cases.html", source = "./guides/general-use-cases.md" },
17+
{ title = "Add to a Supervisor", path = "guides/chip-as-part-of-a-supervision-tree.html", source = "./guides/chip-as-part-of-a-supervision-tree.md" },
18+
{ title = "As a local PubSub", path = "guides/chip-as-a-local-pubsub.html", source = "./guides/chip-as-a-local-pubsub.md" },
19+
]
20+
1321
[dependencies]
1422
gleam_stdlib = "~> 0.36.0"
1523
gleam_erlang = "~> 0.24"

test/chat/event.gleam

Lines changed: 0 additions & 14 deletions
This file was deleted.

test/chat/pubsub.gleam

Lines changed: 0 additions & 39 deletions
This file was deleted.

test/chat/server.gleam

Lines changed: 0 additions & 72 deletions
This file was deleted.

test/chat/supervisor.gleam

Lines changed: 0 additions & 18 deletions
This file was deleted.

test/chip/chat_test.gleam

Lines changed: 0 additions & 79 deletions
This file was deleted.

0 commit comments

Comments
 (0)