summaryrefslogtreecommitdiff
path: root/ebin
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2009-12-12 07:34:29 -0700
committerDave Smith <dizzyd@dizzyd.com>2009-12-12 07:34:29 -0700
commit3990f0a0766e5e508e319e73139df93cc4c3bde4 (patch)
tree6b5599ac7cf44280fba6f1ae9c76b5594232cdcc /ebin
parent726f8e6946f8ee36aca80b71dca10a5506445c35 (diff)
downloadrebar-3990f0a0766e5e508e319e73139df93cc4c3bde4.tar.gz
Refactor of core logic to provide better control over recursion and code path mgmt
Diffstat (limited to 'ebin')
-rw-r--r--ebin/rebar.app22
1 files changed, 10 insertions, 12 deletions
diff --git a/ebin/rebar.app b/ebin/rebar.app
index bca0abc..294ec2b 100644
--- a/ebin/rebar.app
+++ b/ebin/rebar.app
@@ -24,18 +24,16 @@
{env, [
%% Default log level
{log_level, error},
-
- %% Key/value list of base/default configuration used by
- %% rebar_config during initialization
- {default_config, [
- {app_modules, [ rebar_protobuffs_compiler,
- rebar_erlc_compiler,
- rebar_port_compiler,
- rebar_otp_app,
- rebar_ct,
- rebar_eunit]},
- {rel_modules, [ rebar_reltool ]}
- ]}
+ %% Processing modules
+ {modules, [
+ {app_dir, [ rebar_protobuffs_compiler,
+ rebar_erlc_compiler,
+ rebar_port_compiler,
+ rebar_otp_app,
+ rebar_ct,
+ rebar_eunit]},
+ {rel_dir, [ rebar_reltool ]}
+ ]}
]}
]}.