45 lines
694 B
Plaintext
45 lines
694 B
Plaintext
|
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",
|
||
|
},
|
||
|
}
|