diff options
author | Ignacio Burgueño <ignaciob@inconcertcc.com> | 2015-04-14 22:29:36 -0300 |
---|---|---|
committer | Ignacio Burgueño <ignaciob@inconcertcc.com> | 2015-04-14 22:29:36 -0300 |
commit | dc6ab555607f3380f4921b7a2f665a873aebd656 (patch) | |
tree | 4b8130917246018889cb0e1475df44838599e084 | |
parent | 13b314bf907bf4d7f76f93254dc2d5bea94dbccb (diff) | |
download | valua-dc6ab555607f3380f4921b7a2f665a873aebd656.tar.gz valua-dc6ab555607f3380f4921b7a2f665a873aebd656.tar.bz2 valua-dc6ab555607f3380f4921b7a2f665a873aebd656.zip |
Bump rockspec since Lua 5.3 is supported
-rw-r--r-- | valua-0.2.1-2.rockspec | 23 |
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 |