From d86e9fae893da568edaa3cb1c97998b19a5d180e Mon Sep 17 00:00:00 2001 From: Etiene Dalcol Date: Sun, 24 Jan 2016 20:19:34 +0100 Subject: Add rockspec for 0.3 version --- rockspecs/valua-0.3-1.rockspec | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 rockspecs/valua-0.3-1.rockspec diff --git a/rockspecs/valua-0.3-1.rockspec b/rockspecs/valua-0.3-1.rockspec new file mode 100644 index 0000000..d7b7059 --- /dev/null +++ b/rockspecs/valua-0.3-1.rockspec @@ -0,0 +1,25 @@ +package = "valua" +version = "0.3-1" +source = { + url = "git://github.com/sailorproject/sailor", + tag = "0.3" +} +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" +} +build = { + type = "none", + install ={ + lua ={ + valua = "valua.lua" + } + } +} -- cgit v1.2.3-54-g00ecf