diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2010-01-07 22:18:55 -0700 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2010-01-07 22:18:55 -0700 |
commit | 2d9af6cf485466d1b4e81707a8bb3ad8ebcd238b (patch) | |
tree | f3fd554e0157cfdfd8d4536a29ac947e37021cf6 /ebin | |
parent | 3ed1b99438b3a0990f1f36d8aad69d7b82ccf663 (diff) |
Sketching out templating system
Diffstat (limited to 'ebin')
-rw-r--r-- | ebin/rebar.app | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ebin/rebar.app b/ebin/rebar.app index 02a2094..d9e590c 100644 --- a/ebin/rebar.app +++ b/ebin/rebar.app @@ -23,8 +23,10 @@ rebar_rel_utils, rebar_reltool, rebar_subdirs, + rebar_templater, rebar_utils, - getopt ]}, + getopt, + mustache ]}, {registered, []}, {applications, [kernel, stdlib, @@ -39,7 +41,8 @@ %% any_dir processing modules {any_dir_modules, [ rebar_subdirs, - rebar_deps + rebar_deps, + rebar_templater ]}, %% Dir specific processing modules |