diff options
author | Etiene <dalcol@etiene.net> | 2014-03-11 17:07:05 +0000 |
---|---|---|
committer | Etiene <dalcol@etiene.net> | 2014-03-11 17:07:05 +0000 |
commit | c3814286b5e8cef5c51dc514ac1161f0bc496f9f (patch) | |
tree | 06e87b0060a1eb41c65793d4cbc22c5be9f121f1 /valua-0.2.rockspec | |
parent | 1e315e03de39e3c3324b9c4d792be452ced76ac3 (diff) | |
download | valua-c3814286b5e8cef5c51dc514ac1161f0bc496f9f.tar.gz valua-c3814286b5e8cef5c51dc514ac1161f0bc496f9f.tar.bz2 valua-c3814286b5e8cef5c51dc514ac1161f0bc496f9f.zip |
Initial commit.
Diffstat (limited to 'valua-0.2.rockspec')
-rw-r--r-- | valua-0.2.rockspec | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/valua-0.2.rockspec b/valua-0.2.rockspec new file mode 100644 index 0000000..8423994 --- /dev/null +++ b/valua-0.2.rockspec @@ -0,0 +1,22 @@ +package = "Valua" +version = "0.2" +source = { + url = "https://github.com/Etiene/valua" +} +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 |