aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtiene Dalcol <Etiene@users.noreply.github.com>2015-11-24 19:50:11 +0100
committerEtiene Dalcol <Etiene@users.noreply.github.com>2015-11-24 19:50:11 +0100
commit3997cccb6da5bba9aa19d45969ce1c591a11dd54 (patch)
treea65f5a4543faf7924a9f998248e9812ae7f01e51
parent1c37a60d7ff536d23d69d9d67ae5ce9a94f34102 (diff)
downloadvalua-3997cccb6da5bba9aa19d45969ce1c591a11dd54.tar.gz
valua-3997cccb6da5bba9aa19d45969ce1c591a11dd54.tar.bz2
valua-3997cccb6da5bba9aa19d45969ce1c591a11dd54.zip
New rockspec that accepts lua5.3
-rw-r--r--valua-0.2.2-2.rockspec25
1 files changed, 25 insertions, 0 deletions
diff --git a/valua-0.2.2-2.rockspec b/valua-0.2.2-2.rockspec
new file mode 100644
index 0000000..0336d6b
--- /dev/null
+++ b/valua-0.2.2-2.rockspec
@@ -0,0 +1,25 @@
+package = "valua"
+version = "0.2.2-2"
+source = {
+ url = "https://github.com/Etiene/valua/releases/download/0.2.2/valua-0.2.2.tar.gz",
+ tag = "valua-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/Etiene/valua",
+ license = "MIT"
+}
+dependencies = {
+ "lua >= 5.1, < 5.4"
+}
+build = {
+ type = "none",
+ install ={
+ lua ={
+ valua = "valua.lua"
+ }
+ }
+}