-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlua-series-1.1.0-1.rockspec
More file actions
43 lines (43 loc) · 985 Bytes
/
lua-series-1.1.0-1.rockspec
File metadata and controls
43 lines (43 loc) · 985 Bytes
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
38
39
40
41
42
43
rockspec_format = "3.0"
package = "lua-series"
version = "1.1.0-1"
source = {
url = "git+https://github.com/MartinHelmut/lua-series",
tag = "v1.1.0"
}
description = {
summary = "The companion repository to my Lua blog series.",
detailed = [[
This package is for educational purposes and contains only some test
and example code for my Lua series.
]],
homepage = "https://martin-fieber.de/series/lua/",
license = "MIT",
issues_url = "https://github.com/MartinHelmut/lua-series/issues",
labels = {
"lua-series",
"educational"
},
maintainer = "Martin Helmut Fieber <info@martin-fieber.se>"
}
dependencies = {
"lua >= 5.1, < 5.5",
"inspect >= 3.1",
"lua-path >= 0.3"
}
build = {
type = "builtin",
modules = {
["lua-series"] = "src/main.lua"
},
copy_directories = {
"doc"
}
}
test = {
type = "command",
command = "lua src/test.lua -o TAP",
}
test_dependencies = {
"luaunit >= 3.4"
}