Popularity
3.3
Stable
Activity
3.4
-
5
2
12

Monthly Downloads: 899
Programming language: Erlang
License: MIT License
Tags: Build Tools    
Latest version: v0.6.0

rebar3_diameter_compiler alternatives and similar packages

Based on the "Build Tools" category.
Alternatively, view rebar3_diameter_compiler alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of rebar3_diameter_compiler or a related project?

Add another 'Build Tools' Package

README

rebar3_diameter_compiler

Compile diameter .dia files in rebar3 projects

Build

$ ./rebar3 compile

Use

Add the plugin to your rebar config from Github:

{plugins, [
    { rebar3_diameter_compiler, {git, "https://github.com/carlosedp/rebar3_diameter_compiler.git", {branch, "master"}}}
]}.

{provider_hooks, [
    {pre, [
        {compile, {diameter, compile}},
        {clean, {diameter, clean}}
    ]}
]}.

Or fetch the plugin using Hex.pm:

{plugins, [
    rebar3_diameter_compiler
]}.

{provider_hooks, [
    {pre, [
        {compile, {diameter, compile}},
        {clean, {diameter, clean}}
    ]}
]}.

The plugin will be ran on compile and clean commands or call your plugin directly in an existing application:

$ rebar3 diameter compile
===> Fetching rebar3_diameter_compiler
===> Compiling rebar3_diameter_compiler
===> Compiling diameter...

$ rebar3 diameter clean
===> Cleaning diameter compiled files...