aboutsummaryrefslogtreecommitdiff
path: root/valua-0.2.1-1.rockspec
diff options
context:
space:
mode:
authorEtiene Dalcol <ecdalcol@gmail.com>2014-03-12 16:07:58 -0300
committerEtiene Dalcol <ecdalcol@gmail.com>2014-03-12 16:07:58 -0300
commit9c9607e7ee8afd8e4c211ea3258df3cce6792adc (patch)
tree0a1e6ac8b1a9fe89e6d2fe70bc02ac0d918c3398 /valua-0.2.1-1.rockspec
parenteb39a85e93459dcbde302df37ccb27219344890f (diff)
downloadvalua-9c9607e7ee8afd8e4c211ea3258df3cce6792adc.tar.gz
valua-9c9607e7ee8afd8e4c211ea3258df3cce6792adc.tar.bz2
valua-9c9607e7ee8afd8e4c211ea3258df3cce6792adc.zip
Renaming rockspec and adding my name to license
Diffstat (limited to 'valua-0.2.1-1.rockspec')
-rw-r--r--valua-0.2.1-1.rockspec23
1 files changed, 23 insertions, 0 deletions
diff --git a/valua-0.2.1-1.rockspec b/valua-0.2.1-1.rockspec
new file mode 100644
index 0000000..f78bb41
--- /dev/null
+++ b/valua-0.2.1-1.rockspec
@@ -0,0 +1,23 @@
+package = "Valua"
+version = "0.2.1-1"
+source = {
+ url = "git://github.com/Etiene/valua",
+ tag = "v0.2.1"
+}
+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",
+ }
+} \ No newline at end of file