barrel-db / rebar3_elixir_compile

Elixir rebar3 compiler plugin
Other
90 stars 29 forks source link

examples needed #3

Closed benoitc closed 8 years ago

benoitc commented 8 years ago

we need some examples and a Getting Started doc

sivsushruth commented 8 years ago

added example. Need a getting started doc @benoitc

waisbrot commented 8 years ago

What does elixir_opts do? Does the {compile, {ex, compile}} hook compile all Elixir apps?

benoitc commented 8 years ago

@waisbrot elixir_opts allows you to set the paths to the elixir installation (bin and libs). Otherwise it is discovered in the PATH.

The compile hook will compile all the elixir apps and their dependencies. Elixir apps are fetched via the deps.

benoitc commented 8 years ago

done. Thanks!