rebar/ebin/rebar.app

21 lines
595 B
Text
Raw Normal View History

2009-11-25 22:23:42 +00:00
{application, rebar,
[{description, "Rebar: Erlang Build Tool"},
{vsn, "1"},
{modules, [ rebar_config,
rebar_utils,
rebar_app_utils,
rebar_rel_utils,
rebar_erlc_compiler]},
2009-11-25 22:23:42 +00:00
{registered, []},
{applications, [kernel,
stdlib,
sasl]},
{env, [
%% Key/value list of base/default configuration used by
%% rebar_config during initialization
{default_config, [
{app_modules, [ rebar_erlc_compiler ]}
2009-11-25 22:23:42 +00:00
]}
]}
]}.