diff options
author | Jon Meredith <jon.hg@jonmeredith.com> | 2009-11-30 11:12:25 -0700 |
---|---|---|
committer | Jon Meredith <jon.hg@jonmeredith.com> | 2009-11-30 11:12:25 -0700 |
commit | c5d877a934e793947eb0140ad3b42a6988fe593d (patch) | |
tree | bb3cdc037418867473128e91b5b73f0393066926 /ebin | |
parent | 961c95b419ca0aa1e1c8ff6520450fe8e3368de5 (diff) |
Renamed app_installer to otp_app.
Added compile check for app name.
Added compile check for app modules
--HG--
rename : src/rebar_app_installer.erl => src/rebar_otp_app.erl
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rebar.app | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/ebin/rebar.app b/ebin/rebar.app index e900fbf..085f847 100644 --- a/ebin/rebar.app +++ b/ebin/rebar.app @@ -1,11 +1,16 @@ {application, rebar, [{description, "Rebar: Erlang Build Tool"}, {vsn, "1"}, - {modules, [ rebar_config, - rebar_utils, - rebar_app_utils, + {modules, [ rebar_app_utils, + rebar_config, + rebar_core, + rebar_erlc_compiler, + rebar_file_utils, + rebar_log, + rebar_otp_app, + rebar_protobuffs_compiler, rebar_rel_utils, - rebar_erlc_compiler]}, + rebar_utils ]}, {registered, []}, {applications, [kernel, stdlib, @@ -19,7 +24,7 @@ {default_config, [ {app_modules, [ rebar_protobuffs_compiler, rebar_erlc_compiler, - rebar_app_installer ]} + rebar_otp_app ]} ]} ]} ]}. |