-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
José Valim
committed
Jan 18, 2017
0 parents
commit 783460a
Showing
24 changed files
with
4,989 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/_build | ||
/cover | ||
/deps | ||
/doc | ||
erl_crash.dump | ||
*.ez |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
language: elixir | ||
elixir: | ||
- 1.3.0 | ||
sudo: false # to use faster container based build environment | ||
notifications: | ||
recipients: | ||
- [email protected] | ||
otp_release: | ||
- 18.0 | ||
after_script: | ||
- mix deps.get --only docs | ||
- MIX_ENV=docs mix inch.report |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
## v0.11.0 | ||
|
||
Extracted from GenStage. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Flow | ||
|
||
`Flow` allows developers to express computations on collections, similar to the `Enum` and `Stream` modules, although computations will be executed in parallel using multiple `GenStage`s. | ||
|
||
## Installation | ||
|
||
Flow requires Elixir v1.3. Add `:flow` to your list of dependencies in mix.exs: | ||
|
||
def deps do | ||
[{:flow, "~> 0.11"}] | ||
end | ||
|
||
## License | ||
|
||
Same as Elixir. |
Oops, something went wrong.