summaryrefslogtreecommitdiff
path: root/support/arara/scripts/rules/velocity.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'support/arara/scripts/rules/velocity.yaml')
-rw-r--r--support/arara/scripts/rules/velocity.yaml41
1 files changed, 0 insertions, 41 deletions
diff --git a/support/arara/scripts/rules/velocity.yaml b/support/arara/scripts/rules/velocity.yaml
deleted file mode 100644
index 0fd62a9465..0000000000
--- a/support/arara/scripts/rules/velocity.yaml
+++ /dev/null
@@ -1,41 +0,0 @@
-!config
-# Arara, the cool TeX automation tool
-# Copyright (c) 2018, Paulo Roberto Massa Cereda
-# All rights reserved.
-#
-# This rule is part of arara.
-identifier: velocity
-name: Velocity
-authors:
-- Paulo Cereda
-commands:
-- name: The Velocity engine
- command: >
- @{
- mergeVelocityTemplate(isEmpty(input, reference, toFile(input)),
- toFile(output), context);
- return true;
- }
-arguments:
-- identifier: context
- flag: >
- @{
- if (isMap(parameters.context)) {
- return parameters.context;
- }
- else {
- throwError('I was expecting a context map.');
- }
- }
- required: true
-- identifier: output
- flag: >
- @{
- return parameters.output;
- }
- required: true
-- identifier: input
- flag: >
- @{
- return parameters.input;
- }