GildedRose-Refactoring-Kata/lua/gildedrose-dev-1.rockspec
Auclair Emmanuel 456cd40538 add Lua lang
2025-09-01 11:53:14 +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"
}