├── .gitignore ├── .travis.yml ├── README.md ├── config └── config.exs ├── lib ├── curry.ex ├── effect.ex └── queue.ex ├── mix.exs ├── mix.lock └── test └── spec ├── effect.spec.exs ├── queue.spec.exs └── spec_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | erl_crash.dump 5 | *.ez 6 | /doc 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/curry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/lib/curry.ex -------------------------------------------------------------------------------- /lib/effect.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/lib/effect.ex -------------------------------------------------------------------------------- /lib/queue.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/lib/queue.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/mix.lock -------------------------------------------------------------------------------- /test/spec/effect.spec.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/test/spec/effect.spec.exs -------------------------------------------------------------------------------- /test/spec/queue.spec.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/test/spec/queue.spec.exs -------------------------------------------------------------------------------- /test/spec/spec_helper.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstarted/effects/HEAD/test/spec/spec_helper.exs --------------------------------------------------------------------------------