Popularity
3.2
Declining
Activity
0.0
Stable
5
1
12
Monthly Downloads: 1,037
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.
-
Rebar3
Erlang build tool that makes it easy to compile and test Erlang applications and releases. -
reaxt
Use React template into your Elixir application for server rendering -
rebar3_auto
Rebar3 plugin to auto compile and reload on file change. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
reltool_util
Erlang reltool utility functionality application -
coffee_rotor
Rotor plugin to compile CoffeeScript files -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
rebar3_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_exunit
A plugin to run Elixir ExUnit tests from rebar3 build tool -
rebar3_protobuffs
rebar3 protobuffs provider using protobuffs from Basho -
rebar3_asn1_compiler
Plugin for compiling ASN.1 modules with Rebar3. -
Exscript
Elixir escript library (derived work from elixir) -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3.
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
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...