recompile
でプロジェクト全体を、r Module.Name
で指定したモジュールのみを再コンパイルすることができます。
以下実行例:
# hoge.ex
defmodule Hoge do
def hoge, do: IO.puts "hogeeee"
end
このhoge.ex
をロードする。
iex(3)> c("hoge.ex")
[Hoge]
iex(4)> Hoge.hoge
hogeeee
:ok
その後、hoge.ex
を以下のように編集。
defmodule Hoge do
def hoge, do: IO.puts "fugaaaaaa"
end
これをr
で再読み込み。
iex(6)> r Hoge
warning: redefining module Hoge (current version defined in memory)
hoge.ex:1
{:reloaded, Hoge, [Hoge]}
iex(7)> Hoge.hoge
fugaaaaaa
:ok
なお、iex -S mix
で起動している場合は、recompile
でmixのプロジェクト全体を再コンパイルできます。