File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Array
2
2
3
- An Elixir wrapper for Erlang's array.
3
+ An Elixir wrapper library for Erlang's array.
4
4
5
5
Supports Access, Enumerable and Collectable protocols.
6
6
7
+ ## Using Array with Mix
8
+ To use array in your projects, add array as a dependency:
9
+
10
+ ```
11
+ def deps do
12
+ [{:array, "~> 1.0.1"}]
13
+ end
14
+ ```
15
+
16
+ Then run ` mix deps.get ` to install it.
17
+
7
18
## Example
8
19
9
20
```
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ defmodule Array.Mixfile do
3
3
4
4
def project do
5
5
[ app: :array ,
6
- version: "1.0.0 " ,
6
+ version: "1.0.1 " ,
7
7
elixir: ">= 1.0.0" ,
8
- description: "An elixir wrapper for Erlang's array." ,
8
+ description: "An elixir wrapper library for Erlang's array." ,
9
9
package: package ,
10
10
deps: deps ]
11
11
end
You can’t perform that action at this time.
0 commit comments