From 6d1e69e8aa279a17894fbb67cbd6cb58cb471a7c Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 8 Jul 2019 21:02:59 +0100 Subject: Extract meets into a tag matching helper --- scripts/toy.groovy | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scripts/toy.groovy') diff --git a/scripts/toy.groovy b/scripts/toy.groovy index a77c5dd..018c32f 100644 --- a/scripts/toy.groovy +++ b/scripts/toy.groovy @@ -266,6 +266,13 @@ return new Object() { } return tt; }; + final matchTags = { spec -> + return { obj -> + spec.every({ s -> + return (s[0] == "!") ? obj.tags.indexOf(s.drop(1)) == -1 : obj.tags.indexOf(s) != -1; + }); + }; + }; // Session def sessionSummon = { imageSpec -> -- cgit v1.2.3