-
Notifications
You must be signed in to change notification settings - Fork 8
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
1 parent
2dfac4f
commit 4f5198f
Showing
1 changed file
with
26 additions
and
0 deletions.
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,26 @@ | ||
package = "lusty" | ||
version = "0.5-0" | ||
source = { | ||
url = "https://github.com/Olivine-Labs/lusty/archive/v0.5.tar.gz", | ||
dir = "lusty-0.5" | ||
} | ||
description = { | ||
summary = "Lua web framework.", | ||
detailed = [[ | ||
An event-based web framework built for speed. | ||
]], | ||
homepage = "http://olivinelabs.com/lusty/", | ||
license = "MIT <http://opensource.org/licenses/MIT>" | ||
} | ||
dependencies = { | ||
"lua >= 5.1", | ||
"busted >= 1.7-1", | ||
"mediator_lua >= 1.1-2" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
["lusty.init"] = "src/init.lua", | ||
["lusty.util"] = "src/util.lua" | ||
} | ||
} |