Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 876 Bytes

README.md

File metadata and controls

46 lines (35 loc) · 876 Bytes

Rebar3 erlesy plugin

A rebar3 plugin for automatically generating state machine charts from finite state machines of your choosing

Build

$ rebar3 compile

Use

Add the plugin to your rebar config:

{plugins, [
    { rebar3_erlesy, "1.0.0" }
]}.

Configure options (example below)

{erlesy_opts, [
    {i, []},
    {filenames, [
        "src/statem_test.erl" | {"src/statem_test.erl", "graph/"}
    ]}
]}.

The i and filenames option values are relative to the app's location. If not specified the output directory will be the same of the source filename, if filenames list element is a tuple then the second element is the output directory relative to the app's _build output directory.

{provider_hooks, [
    {pre, [
        {compile, {erlesy, generate}},
        {clean, {erlesy, clean}}
    ]}
]}.