mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
20 lines
327 B
Lua
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"
|
|
}
|