recipe
recipe copied to clipboard
An Elixir library to compose multi-step, reversible workflows.
For recipes who result from chaining multiple recipes together, there could be a multi-runner who pipes positive results forward as arguments of the subsequent recipe, re-using running options (particularly the...
Add an option to pass a list of exceptions to Recipe.run/3, so that they can be rescued and passed to handle_error/3.
Add a generator so that it's possible to run: `bash> mix recipe.gen_recipe create_comment validate find_post create_comment broadcast` This would create a recipe with 4 steps. The recipe folder should be...