aboutsummaryrefslogtreecommitdiff
path: root/rockspecs/valua-current-1.rockspec
blob: 7eabd80d35729c8ad5f6d6694b12316698544925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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"
      }
   }
}