aboutsummaryrefslogtreecommitdiff
path: root/valua-0.2.1-2.rockspec
diff options
context:
space:
mode:
authorEtiene Dalcol <Etiene@users.noreply.github.com>2015-04-15 09:14:38 +0100
committerEtiene Dalcol <Etiene@users.noreply.github.com>2015-04-15 09:14:38 +0100
commit2772aaf051a81b39540b77ee33eab13b6875becd (patch)
treeac10c91a0c692eca1713acae5c06c30c48e11c30 /valua-0.2.1-2.rockspec
parentd5942f76be9be2815857fa90c8f7fd27b46e43d0 (diff)
parentfae07a450ea0b1e9998c4443c147d4c9e8bd4ef7 (diff)
downloadvalua-2772aaf051a81b39540b77ee33eab13b6875becd.tar.gz
valua-2772aaf051a81b39540b77ee33eab13b6875becd.tar.bz2
valua-2772aaf051a81b39540b77ee33eab13b6875becd.zip
Merge pull request #5 from ignacio/travis_integration
Adds travis-ci integration
Diffstat (limited to 'valua-0.2.1-2.rockspec')
-rw-r--r--valua-0.2.1-2.rockspec23
1 files changed, 23 insertions, 0 deletions
diff --git a/valua-0.2.1-2.rockspec b/valua-0.2.1-2.rockspec
new file mode 100644
index 0000000..8584880
--- /dev/null
+++ b/valua-0.2.1-2.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.4"
+}
+build = {
+ type = "builtin",
+ modules = {
+ ["valua"] = "valua.lua",
+ }
+} \ No newline at end of file