32 lines
681 B
Markdown
32 lines
681 B
Markdown
# Scopes
|
|
|
|
Yet another implementation of the unfamous `scopes` framework.
|
|
|
|
## Installation
|
|
|
|
You can use the development checkout from Git and reference it as a dependency
|
|
in `mix.exs` like this:
|
|
|
|
```elixir
|
|
def deps do
|
|
[
|
|
{:scopes, path: "../ex-scopes"}
|
|
]
|
|
end
|
|
```
|
|
|
|
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
|
|
by adding `scopes` to your list of dependencies in `mix.exs`:
|
|
|
|
```elixir
|
|
def deps do
|
|
[
|
|
{:scopes, "~> 0.1.0"}
|
|
]
|
|
end
|
|
```
|
|
|
|
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
|
|
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
|
|
be found at <https://hexdocs.pm/xplore>.
|
|
|