A set of utilities for working with the AT Protocol in Elixir.

feat(docs): add groups in ExDoc

ovyerus.com 6c7c464a f622d682

verified
Changed files
+11 -3
+1 -1
README.md
···
```elixir
def deps do
[
-
{:atex, "~> 0.3"}
+
{:atex, "~> 0.5"}
]
end
```
+10 -2
mix.exs
···
[
extras: [
LICENSE: [title: "License"],
-
"README.md": [title: "Overview"]
+
"README.md": [title: "Overview"],
+
"CHANGELOG.md": [title: "Changelog"]
],
main: "readme",
source_url: @github,
source_ref: "v#{@version}",
-
formatters: ["html"]
+
formatters: ["html"],
+
groups_for_modules: [
+
"Data types": [Atex.AtURI, Atex.DID, Atex.Handle, Atex.NSID, Atex.TID],
+
XRPC: ~r/^Atex\.XRPC/,
+
OAuth: [Atex.Config.OAuth, Atex.OAuth, Atex.OAuth.Plug],
+
Lexicons: ~r/^Atex\.Lexicon/,
+
Identity: ~r/^Atex\.IdentityResolver/
+
]
]
end
end