From b7e2088c273708bd5ce46b3c135c20f2229c7ccf Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Wed, 25 Nov 2009 15:23:42 -0700 Subject: Initial commit --- ebin/rebar.app | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ebin/rebar.app (limited to 'ebin') diff --git a/ebin/rebar.app b/ebin/rebar.app new file mode 100644 index 0000000..4ebff64 --- /dev/null +++ b/ebin/rebar.app @@ -0,0 +1,20 @@ +{application, rebar, + [{description, "Rebar: Erlang Build Tool"}, + {vsn, "1"}, + {modules, [ rebar_config, + rebar_utils, + rebar_app_utils, + rebar_rel_utils, + rebar_doterl_compiler]}, + {registered, []}, + {applications, [kernel, + stdlib, + sasl]}, + {env, [ + %% Key/value list of base/default configuration used by + %% rebar_config during initialization + {default_config, [ + {app_modules, [ rebar_doterl_compiler ]} + ]} + ]} +]}. -- cgit v1.1