From eb39a85e93459dcbde302df37ccb27219344890f Mon Sep 17 00:00:00 2001 From: Etiene Dalcol Date: Wed, 12 Mar 2014 15:38:16 -0300 Subject: Adding 0.2.1 rockspec --- valua-0.2.1.rockspec | 23 +++++++++++++++++++++++ valua-0.2.rockspec | 23 ----------------------- valua.lua | 2 +- 3 files changed, 24 insertions(+), 24 deletions(-) create mode 100644 valua-0.2.1.rockspec delete mode 100644 valua-0.2.rockspec diff --git a/valua-0.2.1.rockspec b/valua-0.2.1.rockspec new file mode 100644 index 0000000..f78bb41 --- /dev/null +++ b/valua-0.2.1.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.3" +} +build = { + type = "builtin", + modules = { + ["valua"] = "valua.lua", + } +} \ No newline at end of file diff --git a/valua-0.2.rockspec b/valua-0.2.rockspec deleted file mode 100644 index cda86c7..0000000 --- a/valua-0.2.rockspec +++ /dev/null @@ -1,23 +0,0 @@ -package = "Valua" -version = "0.2" -source = { - url = "https://github.com/Etiene/valua", - tag = "v0.2" -} -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 diff --git a/valua.lua b/valua.lua index 19d2251..8ffdccf 100644 --- a/valua.lua +++ b/valua.lua @@ -1,4 +1,4 @@ --- Valua 0.2 +-- Valua 0.2.1 -- Copyright (c) 2014 Etiene Dalcol -- License: MIT -- -- cgit v1.2.3-54-g00ecf