Packages

Stifle is a library for suppressing side-effects (raises, exits, etc) in Elixir functions, allowing the developer to replay side effects in the current process or inspect the effect/return value safely.

Current section

Files

Jump to
stifle README.md
Raw

README.md

# Stifle
**TODO: Add description**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed as:
1. Add stifle to your list of dependencies in `mix.exs`:
def deps do
[{:stifle, "~> 0.0.1"}]
end
2. Ensure stifle is started before your application:
def application do
[applications: [:stifle]]
end