GildedRose-Refactoring-Kata/lua/gildedrose-dev-1.rockspec
Auclair Emmanuel d8f30fa8d3 add Lua lang
2025-09-02 15:34:44 +02:00

20 lines
327 B
Lua

rockspec_format = "3.0"
package = "gildedrose"
version = "dev-1"
source = {
url = "https://github.com/emilybache/GildedRose-Refactoring-Kata.git"
}
description = {
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.5"
}
test_dependencies = {
"busted >= 2.2"
}
test = {
type = "command",
command = "busted"
}