-
Notifications
You must be signed in to change notification settings - Fork 0
/
ray-1.1.0-1.rockspec
42 lines (42 loc) · 992 Bytes
/
ray-1.1.0-1.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
38
39
40
41
42
rockspec_format = "3.0"
package = "ray"
version = "1.1.0-1"
source = {
url = "git+https://github.com/ALameLlama/ray-lua",
tag = "v1.1.0",
}
description = {
summary = "Lua support for Ray Debugger by Spatie",
detailed = [[
This package provides a Lua client for the Ray Debugger by Spatie.
]],
homepage = "https://github.com/ALameLlama/ray-lua",
license = "MIT",
issues_url = "https://github.com/ALameLlama/ray-lua/issues",
labels = {
"ray-debugger",
"ray-spatie",
},
maintainer = "Nicholas Ciechanowski <[email protected]>",
}
dependencies = {
"lua >= 5.1, < 5.5",
"http >= 0.4",
"lua-cjson >= 2.1",
"uuid >= 0.3",
}
build = {
type = "builtin",
modules = {
["ray"] = "src/ray/ray.lua",
["ray.util"] = "src/ray/util.lua",
["ray.messages"] = "src/ray/messages.lua",
["ray.config"] = "src/ray/config.lua",
},
copy_directories = { "doc" },
}
test = {
type = "command",
script = "src/ray/test.lua",
}
test_dependencies = { "luaunit >= 3.4" }