Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Jan 18, 2017
0 parents commit 783460a
Show file tree
Hide file tree
Showing 24 changed files with 4,989 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/_build
/cover
/deps
/doc
erl_crash.dump
*.ez
12 changes: 12 additions & 0 deletions .travis.yml
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## v0.11.0

Extracted from GenStage.
15 changes: 15 additions & 0 deletions README.md
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.
Loading

0 comments on commit 783460a

Please sign in to comment.