elixir-mix Questions
1
Solved
For Erlang code, I use rebar. For Elixir code, I use the built-in mix tool.
Now I want to have a mixed Erlang/Elixir project. Can I use rebar to compile Elixir code? Or can I use mix to compile E...
Crossover asked 4/11, 2013 at 20:21
1
Solved
If I have a mix.exs file something like:
defmodule Mix.Tasks.My_task do
use Mix.Task
@shortdoc "Perform my task"
def run(_) do
IO.puts "Working"
end
end
defmodule ElixirKoans.Mixfile do
u...
Saleem asked 29/9, 2013 at 0:5
© 2022 - 2024 — McMap. All rights reserved.