Skip to content

Commit

Permalink
Add rockspec for 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goldenstein64 committed Nov 5, 2023
1 parent f15c93e commit 8a76455
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions rockspec/bustez-0.1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
rockspec_format = "3.0"
package = "bustez"
version = "0.1.0-1"
source = {
url = "git+https://github.com/goldenstein64/bustez.git",
dir = "bustez",
}
description = {
summary = "TestEZ injected into Busted",
detailed = [[
BustEZ injects Roblox's TestEZ syntax into the Busted library by
registering new assertions and modifiers and introducing an alternative
function to assert.
]],
homepage = "https://github.com/goldenstein64/bustez",
issues_url = "https://github.com/goldenstein64/bustez/issues",
license = "MIT",
}
dependencies = {
"lua >= 5.1",
"luassert ~> 1.9",
"say ~> 1.4",
}
build = {
type = "builtin",
modules = {
["bustez.init"] = "src/bustez/init.lua",
["bustez.expect"] = "src/bustez/expect.lua",
["bustez.register"] = "src/bustez/register.lua",
["luassert.bustez.expect"] = "src/luassert/bustez/expect.lua",
},
}

0 comments on commit 8a76455

Please sign in to comment.