diff options
author | Etiene Dalcol <dalcol@etiene.net> | 2016-01-24 09:10:15 +0100 |
---|---|---|
committer | Etiene Dalcol <dalcol@etiene.net> | 2016-01-24 09:10:15 +0100 |
commit | 778aa944f21275e5926f05789b0babe656cf5cf8 (patch) | |
tree | 17584180554d2e1e5d0c9f87ba7c1f8f6d635b40 /rockspecs/valua-current-1.rockspec | |
parent | e9993772d4002cba55e9865d695c7a6bfebd95eb (diff) | |
download | valua-778aa944f21275e5926f05789b0babe656cf5cf8.tar.gz valua-778aa944f21275e5926f05789b0babe656cf5cf8.tar.bz2 valua-778aa944f21275e5926f05789b0babe656cf5cf8.zip |
Add current rockspec
Diffstat (limited to 'rockspecs/valua-current-1.rockspec')
-rw-r--r-- | rockspecs/valua-current-1.rockspec | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/rockspecs/valua-current-1.rockspec b/rockspecs/valua-current-1.rockspec new file mode 100644 index 0000000..7eabd80 --- /dev/null +++ b/rockspecs/valua-current-1.rockspec @@ -0,0 +1,25 @@ +package = "valua" +version = "current-1" +source = { + url = "git://github.com/sailorproject/sailor", +} +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/sailorproject/valua", + license = "MIT" +} +dependencies = { + "lua >= 5.1, < 5.4", + "busted >= 2.0.rc10", +} +build = { + type = "none", + install ={ + lua ={ + valua = "valua.lua" + } + } +} |