aboutsummaryrefslogtreecommitdiff
path: root/rockspecs/valua-0.2.2-3.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'rockspecs/valua-0.2.2-3.rockspec')
-rw-r--r--rockspecs/valua-0.2.2-3.rockspec25
1 files changed, 25 insertions, 0 deletions
diff --git a/rockspecs/valua-0.2.2-3.rockspec b/rockspecs/valua-0.2.2-3.rockspec
new file mode 100644
index 0000000..215a53d
--- /dev/null
+++ b/rockspecs/valua-0.2.2-3.rockspec
@@ -0,0 +1,25 @@
+package = "valua"
+version = "0.2.2-3"
+source = {
+ url = "https://github.com/sailorproject/valua/releases/download/0.2.2/valua-0.2.2.tar.gz",
+ tag = "0.2.2"
+}
+description = {
+ summary = "Validation for Lua!",
+ detailed = [[
+ This module provides tools for validating values, very useful in forms, but also usable elsewhere. It works in appended chains. Create a new validation object and start chaining your test functions.
+ ]],
+ homepage = "https://github.com/sailorproject/valua",
+ license = "MIT"
+}
+dependencies = {
+ "lua >= 5.1, < 5.4"
+}
+build = {
+ type = "none",
+ install ={
+ lua ={
+ valua = "valua.lua"
+ }
+ }
+}