summaryrefslogtreecommitdiff
path: root/src/rebar_templater.erl
Commit message (Collapse)AuthorAgeFilesLines
* Add forward-compatible escript_foldl functionTuncer Ayaz2010-03-051-2/+5
| | | | | | escript:foldl/3 was undocumented and has been replaced with better APIs post-R13B04. The new exported funs are officially documented.
* Fix bug in templater where escript was not found in subdirs were specified ↵Dave Smith2010-02-201-4/+6
| | | | in rebar.config; minor formatting cleanups
* provide separate 'file' and 'template' directives, instead of one 'file' ↵Bryan Fink2010-02-131-28/+45
| | | | directive with a boolean Render flag
* add chmod template directive for changing file file permissionBryan Fink2010-02-041-0/+8
| | | | | | usage: {chmod, Mode, File} where: Mode is an integer, as specified by the 'mode' field of the file_info record (see docs for file:write_file_info/2)
* add Render flag to 'file' template directiveBryan Fink2010-02-041-2/+9
| | | | | | | {file,In,Out,true} = render with mustache {file,In,Out,false} = do not render with mustache (leave as-is) old-form {file,In,Out} is equivalent to {file,In,Out,true}
* look for templates in local directory as wellBryan Fink2010-02-041-2/+3
|
* Add support for forcibly overwriting output files; courtesy of OJ ReevesDave Smith2010-01-301-17/+40
|
* Adding sketch of functionality for creating a reltool node from templateDave Smith2010-01-081-0/+6
|
* Basic implementation of templater is completeDave Smith2010-01-081-8/+186
|
* Sketching out templating systemDave Smith2010-01-071-0/+51