Popularity
3.4
Stable
Activity
3.4
Stable
6
2
13
Monthly Downloads: 857
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.
-
ExMake
DISCONTINUED. A modern, scriptable, dependency-based build tool loosely based on Make principles.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of rebar3_diameter_compiler or a related project?
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...