diff options
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rebar.app | 20 |
1 files changed, 20 insertions, 0 deletions
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 ]} + ]} + ]} +]}. |