gen_state_machine icon indicating copy to clipboard operation
gen_state_machine copied to clipboard

An idiomatic Elixir wrapper for gen_statem in OTP 19 (and above).

Results 6 gen_state_machine issues
Sort by recently updated
recently updated
newest added

List of changes: - Fix typo - Fix spdx license id - Use common source url - Remove api reference page since there is only one module - Add changelog...

The messages generated by `GenStateMachine.Translator` don't have the metadata that modern versions of Sentry's reporter (8.0+) is expecting, so they aren't captured at all. This caused some serious head-scratching at...

Maybe modify the application section is not necessary. I tried this package on elixir 1.14.0 without modify the application section and it works. I followed this tutorial https://dockyard.com/blog/2020/01/31/state-timeouts-with-gen_statem More details:...

This fixes the following warnings in Elixir 1.17: ``` ==> gen_state_machine Compiling 3 files (.ex) warning: single-quoted strings represent charlists. Use ~c"" if you indeed want a charlist or use...

The upcoming Elixir 1.18 is deprecating the "unless" macro. unless is used in gen_state_machine.ex There is a migration command, mix format --migrate to change code.

Using Elixir v1.18.4 ```console $ mix deps.compile gen_state_machine ==> gen_state_machine Compiling 3 files (.ex) ... warning: List.zip/1 is deprecated. Use Enum.zip/1 instead │ 62 │ |> List.zip() │ ~ │...