-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
rockspec_format = "3.0" | ||
package = "Laura" | ||
version = "1.0.2-0" | ||
source = { | ||
url = "git+https://github.com/dknight/laura.git", | ||
branch = "1.0.2-0" | ||
} | ||
description = { | ||
summary = "Unit-testing framework written purely in Lua.", | ||
detailed = [[ | ||
Laura is a lightweight unit-testing framework for Lua with simplicity in | ||
mind. The framework has no dependencies and works with Lua versions | ||
5.1—5.4 and LuaJIT. | ||
]], | ||
homepage = "https://www.whoop.ee/laura", | ||
license = "MIT", | ||
issues_url = "https://github.com/dknight/laura/issues", | ||
maintainer = "Dmitri Smirnov <https://www.whoop.ee/>", | ||
labels = { "test", "unit-test" }, | ||
} | ||
dependencies = { | ||
"lua >= 5.1", | ||
} | ||
build = { | ||
type = "builtin", | ||
copy_directories = { | ||
"test", | ||
}, | ||
install = { | ||
bin = { | ||
"bin/laura", | ||
}, | ||
}, | ||
} | ||
test = { | ||
type = "command", | ||
command = "make test", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
return "1.0.1-0" | ||
return "1.0.2-0" |