INSTALL_DIR |
= |
File.expand_path(File.join(File.dirname(__FILE__), "..", "..")) |
HELPERS_DIR |
= |
File.join(INSTALL_DIR, "helpers") |
PEXEC |
= |
"** " |
|
Output prefix for command execution, e.g., "** ls -la"
|
PNOTE |
= |
"=> " |
|
Output prefix for notes, e.g., "=> Something happened"
|
PERROR |
= |
"!! " |
|
Output prefix for errors, e.g., "!! Something bad happened"
|
WARNING_BOILERPLATE |
= |
<<-HERE # +---------------------------------------------------------------------+ # | WARNING: Do NOT edit this file directly or your changes will be | # | lost. If you need to change this file, you must incorporate your | # | changes into the AutomateIt project that created it. If you don't | # | know what this means, please talk to your system administrator. | # +---------------------------------------------------------------------+ # HERE |
|
Boilerplate to add to tops of generated files, warning people not to edit
them directly.
|