I have the following luarocks:
package = "project-name"
version = "1.0-1"
source = {
url = "..."
}
description = {
summary = "etc"
detailed = [[]],
homepage = ""
}
dependencies = {
"lua >= 5.1, < 5.2",
"busted >= 2.0.rc12",
"lua-requests >= 1.1",
"json-lua >= 0.1",
"lua-resty-dogstatsd >= 1.0.1"
}
build = {
type = "builtin",
modules = {
["project-name"] = "project/init.lua"
}
}
How do I install the dependencies? Doing luarocks install
says I'm missing arguments. Not sure what to do here.
luarocks install
alone won't do anyhting. you have to provide a module name – Heady