From 1b77956e81f83a4c59c56afc7da1258f3d514a80 Mon Sep 17 00:00:00 2001 From: spacewander Date: Fri, 27 Nov 2020 10:00:08 +0800 Subject: [PATCH] feat: release 0.9.2 --- rockspec/jsonschema-0.9.2-0.rockspec | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 rockspec/jsonschema-0.9.2-0.rockspec diff --git a/rockspec/jsonschema-0.9.2-0.rockspec b/rockspec/jsonschema-0.9.2-0.rockspec new file mode 100644 index 0000000..f4de5d9 --- /dev/null +++ b/rockspec/jsonschema-0.9.2-0.rockspec @@ -0,0 +1,31 @@ +package = "jsonschema" +version = "0.9.2-0" +source = { + url = "git://github.com/api7/jsonschema.git", + tag = "v0.9.2", +} + +description = { + summary = "JSON Schema data validator", + detailed = [[ +This library provides a jsonschema draft 4, draft 6, draft 7 validator for Lua/LuaJIT. +Given an JSON schema, it will generates a validator function that can be used +to validate any kind of data (not limited to JSON). + +Base on https://github.com/jdesgats/jsonschema . +]], + homepage = "https://github.com/iresty/jsonschema", + license = "MIT" +} + +dependencies = { + "net-url", +} + +build = { + type = "builtin", + modules = { + ["jsonschema"] = "lib/jsonschema.lua", + ["jsonschema.store"] = "lib/jsonschema/store.lua", + } +}