diff --git a/lusty-0.5-0.rockspec b/lusty-0.5-0.rockspec new file mode 100644 index 0000000..f06d7ac --- /dev/null +++ b/lusty-0.5-0.rockspec @@ -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 " +} +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" + } +}