From fd8794dae791c80bfe8e4ab1aa3a9c97370695a9 Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Wed, 25 Nov 2009 21:00:22 -0700 Subject: [PATCH] Renaming compiler module --HG-- rename : src/rebar_doterl_compiler.erl => src/rebar_erlc_compiler.erl --- ebin/rebar.app | 4 ++-- src/{rebar_doterl_compiler.erl => rebar_erlc_compiler.erl} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/{rebar_doterl_compiler.erl => rebar_erlc_compiler.erl} (99%) diff --git a/ebin/rebar.app b/ebin/rebar.app index 4ebff64d..f779b816 100644 --- a/ebin/rebar.app +++ b/ebin/rebar.app @@ -5,7 +5,7 @@ rebar_utils, rebar_app_utils, rebar_rel_utils, - rebar_doterl_compiler]}, + rebar_erlc_compiler]}, {registered, []}, {applications, [kernel, stdlib, @@ -14,7 +14,7 @@ %% Key/value list of base/default configuration used by %% rebar_config during initialization {default_config, [ - {app_modules, [ rebar_doterl_compiler ]} + {app_modules, [ rebar_erlc_compiler ]} ]} ]} ]}. diff --git a/src/rebar_doterl_compiler.erl b/src/rebar_erlc_compiler.erl similarity index 99% rename from src/rebar_doterl_compiler.erl rename to src/rebar_erlc_compiler.erl index 60baa59e..1c157f60 100644 --- a/src/rebar_doterl_compiler.erl +++ b/src/rebar_erlc_compiler.erl @@ -22,7 +22,7 @@ %% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN %% THE SOFTWARE. %% ------------------------------------------------------------------- --module(rebar_doterl_compiler). +-module(rebar_erlc_compiler). -export([compile/2, clean/2]).