-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathchecks-1.0-4.rockspec
37 lines (31 loc) · 988 Bytes
/
checks-1.0-4.rockspec
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
26
27
28
29
30
31
32
33
34
35
36
37
--*-lua-*-
package = "checks"
version = "1.0-4"
source = {
url = "https://github.com/fab13n/checks/raw/master/checks-1.0-3.tar.gz",
dir = "checks",
}
description = {
summary = "Easy, terse, readable and fast function arguments type checking",
detailed = [[
This library declares a `checks()` function and a
`checkers` table, which allow to check the parameters
passed to a Lua function in a fast and unobtrusive way.
Althought provided here as a standalone library, it is
part of Sierra Wireless' Aleos Application Framework,
available under both the Eclipse Public License, and
the MIT public license, currently at:
https://github.com/SierraWireless/luasched
]],
homepage = "https://github.com/fab13n/checks",
license = "MIT public license"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = 'builtin',
modules = {
checks = 'checks.c'
}
}