Last active
August 30, 2016 12:46
-
-
Save xikaos/33a07cdbb969556546371d59f28b4157 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule R do | |
def reload! do | |
Mix.Task.reenable "compile.elixir" | |
Application.stop(Mix.Project.config[:app]) | |
Mix.Task.run "compile.elixir" | |
Application.start(Mix.Project.config[:app], :permanent) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment