Popularity
3.4
Growing
Activity
3.4
Stable
6
2
13
Monthly Downloads: 836
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.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

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...