busted-tl/busted-tl-dev-1.rockspec

45 lines
694 B
Plaintext
Raw Normal View History

2023-04-23 03:34:05 +02:00
rockspec_format = "3.0"
package = "busted-tl"
version = "dev-1"
source = {
url = "*** please add URL for source tarball, zip or repository here ***",
}
description = {
homepage = "*** please enter a project homepage ***",
license = "*** please specify a license ***",
}
dependencies = {
"lua >= 5.1",
"penlight >= 1.3.2",
"busted",
"tl",
}
build_dependencies = {
"cyan",
}
build = {
type = "command",
build_command = "cyan build",
install = {
lua = {
["busted.modules.files.teal"] = "build/busted-tl/teal.lua",
},
},
}
test_dependencies = {
"busted",
}
test = {
type = "busted",
flags = {
"--loaders=teal",
},
}