浏览代码

Renaming compiler module

--HG--
rename : src/rebar_doterl_compiler.erl => src/rebar_erlc_compiler.erl
pull/3/head
Dave Smith 15 年前
父节点
当前提交
fd8794dae7
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. +2
    -2
      ebin/rebar.app
  2. +1
    -1
      src/rebar_erlc_compiler.erl

+ 2
- 2
ebin/rebar.app 查看文件

@ -5,7 +5,7 @@
rebar_utils, rebar_utils,
rebar_app_utils, rebar_app_utils,
rebar_rel_utils, rebar_rel_utils,
rebar_doterl_compiler]},
rebar_erlc_compiler]},
{registered, []}, {registered, []},
{applications, [kernel, {applications, [kernel,
stdlib, stdlib,
@ -14,7 +14,7 @@
%% Key/value list of base/default configuration used by %% Key/value list of base/default configuration used by
%% rebar_config during initialization %% rebar_config during initialization
{default_config, [ {default_config, [
{app_modules, [ rebar_doterl_compiler ]}
{app_modules, [ rebar_erlc_compiler ]}
]} ]}
]} ]}
]}. ]}.

src/rebar_doterl_compiler.erl → src/rebar_erlc_compiler.erl 查看文件

@ -22,7 +22,7 @@
%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN %% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
%% THE SOFTWARE. %% THE SOFTWARE.
%% ------------------------------------------------------------------- %% -------------------------------------------------------------------
-module(rebar_doterl_compiler).
-module(rebar_erlc_compiler).
-export([compile/2, -export([compile/2,
clean/2]). clean/2]).

正在加载...
取消
保存