aboutsummaryrefslogtreecommitdiff
path: root/valua-0.2.rockspec
blob: cda86c790ecd845b1c13492c0d9f97007495702f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package = "Valua"
version = "0.2"
source = {
   url = "https://github.com/Etiene/valua",
   tag = "v0.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/Etiene/valua", 
   license = "MIT"
}
dependencies = {
   "lua >= 5.1, < 5.3"
}
build = {
   type = "builtin",
   modules = {
      ["valua"] = "valua.lua",
   }
}