prorenata v1.0.53
Prorenata
P.R.N. (As the circumstance arises)
Motivation
The venerable make command is the inspiration for prorenata.
Building, testing and deploying software requires a sequence a steps which need to be followed each time a file or one of its dependencies changes. In most cases, these steps should be conditioned on file timestamps, where a step should only be redone when the output of its previous execution is older than the corresponding input file's timestamp. In other words, only execute the step on an as needed basis.
The name of this utility comes from nursing jargon prorenata (p.r.n.) which means "as the circumstance arises".
Prerequisites and installation
The prorenata utility uses Node.js. Package installation is done via NPM.
This utility requires the BLUE-PHRASE parser, which is distributed with each copy of validly licensed Read Write Tools premium tools.
To install the utility and make it available to your Bash shell, use this command.
[user@host]# npm install -g prorenataUsage
The software is invoked from the command line with:
[user@host]# renata [script-file]The script file contains commands in this form:
command {
parameter value
}Commands
There are 6 built-in commands:
copyrecursively copies all files in tocomparelists files that are in but not incleanremoves files that are older thanrecurseruns a template-defined command recursively over all files inrunexecutes an arbitrary shell commandtemplatedefines new commands for use with the parameter ofrecurse
Any name that does not match one of these 6 is considered to be a user-defined
command, and it may be used as a command in a template.
Parameters
The are 15 built-in parameters:
sourcean absolute or relative pathdestan absolute or relative pathinclude+a file pattern to include, if omitted defaults to '*'exclude+a file pattern to excludeextensionthe filename extension to apply to destination filenamesexeca command name defined in thetemplatesectionoverwrite:always | older | never‡mkdir:true‡ | false(create missing directories)preserve:true | false‡(preserve timestamps)triggeran absolute or relative filenamedependent+an absolute or relative pathsh+a shell command to executeif+a conditionalif [hostname ==] | [hostname !=] then ... else ...progress:verbose | regular‡ | noneonerror:continue | halt‡
+ parameter that may be provided multiple times
‡ optional parameter default value
Any name that does not match one of these 15 is considered to be a user-defined parameter. Both built-in and user-defined parameters may be used as substitution variables in a template.
The parameters that may be used with each command are:
* required parameter
A pair of less-than and greater-than characters are used to enclose a named
substitution variable. Use substitutions with recurse, copy and compare commands.
Place substitution variables in a template, and the current path or filename
will be substituted.
The substitution variables:
Examples
Here is an example using copy to recursively copy files with *.html extension
from 'foo' to 'bar'
copy {
source foo
dest bar
include '*.html'
}Here is an example using template and recurse to compile LESS into CSS from
'foo' to 'bar'
template {
compile-css lessc <source> <dest>
}
recurse {
source foo
dest bar
include '*.less'
extension '.css'
exec compile-css
}Here is an example using template and a user-defined command to count the number
of files in 'foo' with an 'html' extension
template {
count-by-ext ls -l <path> | grep <ext> | wc -l
}
count-by-ext {
path foo
ext html
}License
The prorenata command line utility is licensed under the MIT License.