diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2009-11-25 15:23:42 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2009-11-25 15:23:42 -0700 |
commit | b7e2088c273708bd5ce46b3c135c20f2229c7ccf (patch) | |
tree | bd6d3a9d345465d87a8e6d3a56b41067f81086ce /ebin |
Initial commit
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 ]} + ]} + ]} +]}. |