├── .travis.yml ├── LICENSE ├── README.md ├── examples └── test.erl ├── include ├── pipeline.hrl └── pipeline2.hrl ├── rebar3 ├── src ├── pipeline.app.src └── pipeline.erl ├── test.erl └── test └── pipeline_SUITE.erl /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/README.md -------------------------------------------------------------------------------- /examples/test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/examples/test.erl -------------------------------------------------------------------------------- /include/pipeline.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/include/pipeline.hrl -------------------------------------------------------------------------------- /include/pipeline2.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/include/pipeline2.hrl -------------------------------------------------------------------------------- /rebar3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/rebar3 -------------------------------------------------------------------------------- /src/pipeline.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/src/pipeline.app.src -------------------------------------------------------------------------------- /src/pipeline.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/src/pipeline.erl -------------------------------------------------------------------------------- /test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/test.erl -------------------------------------------------------------------------------- /test/pipeline_SUITE.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya/pipeline/HEAD/test/pipeline_SUITE.erl --------------------------------------------------------------------------------