From 6a8f5df572dc3fd3217bcda1ebf62d1e144f99e0 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 12 Sep 2023 21:28:22 -0400 Subject: [PATCH] add webtemplate to dub --- dub.json | 15 +++++++++++++++ webtemplate.d | 4 ++++ 2 files changed, 19 insertions(+) diff --git a/dub.json b/dub.json index 69ec56e..376d637 100644 --- a/dub.json +++ b/dub.json @@ -624,6 +624,21 @@ "dflags-gdc": ["-fmodule-file=arsd.script=$PACKAGE_DIR/script.d"], "sourceFiles": ["script.d"] }, + { + "name": "webtemplate", + "description": "A dom and script based web template system", + "targetType": "library", + "dependencies": { + "arsd-official:script":"*", + "arsd-official:dom":"*", + "arsd-official:jsvar":"*", + "arsd-official:cgi":"*" + }, + "dflags-dmd": ["-mv=arsd.webtemplate=$PACKAGE_DIR/webtemplate.d"], + "dflags-ldc": ["--mv=arsd.webtemplate=$PACKAGE_DIR/webtemplate.d"], + "dflags-gdc": ["-fmodule-file=arsd.webtemplate=$PACKAGE_DIR/webtemplate.d"], + "sourceFiles": ["webtemplate.d"] + }, { "name": "terminal", "description": "Cross-platform Terminal I/O with color, mouse support, real time input, etc.", diff --git a/webtemplate.d b/webtemplate.d index b0f3baf..27b9cf1 100644 --- a/webtemplate.d +++ b/webtemplate.d @@ -38,6 +38,10 @@ History: Things inside script tag were added on January 7, 2022. + + This module was added to dub on September 11, 2023 (dub v11.2). + + It was originally written in July 2019 to support a demonstration of moving a ruby on rails app to D. +/ module arsd.webtemplate;