-
Notifications
You must be signed in to change notification settings - Fork 2
/
gimlet-cocktail-dev-1.rockspec
42 lines (37 loc) · 1.02 KB
/
gimlet-cocktail-dev-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package = "gimlet-cocktail"
version = "dev-1"
source = {
url = "git://github.com/losinggeneration/gimlet.git"
}
description = {
summary = "A micro web framework inspired by Martini and Sinatra.",
homepage = "http://losinggeneration.github.io/gimlet",
maintainer = "Harley Laue <[email protected]>",
license = "MIT"
}
dependencies = {
"lua >= 5.1",
"lua_cliargs >= 2.1",
"luafilesystem >= 1.5",
"xavante >= 2.3.0",
"wsapi-xavante >= 1.6",
"wsapi >= 1.6",
}
build = {
type = "builtin",
modules = {
["gimlet"] = "gimlet/init.lua",
["gimlet.classic"] = "gimlet/classic.lua",
["gimlet.dispatcher"] = "gimlet/dispatcher.lua",
["gimlet.logger"] = "gimlet/logger.lua",
["gimlet.router"] = "gimlet/router.lua",
["gimlet.static"] = "gimlet/static.lua",
["gimlet.utils"] = "gimlet/utils.lua",
["gimlet.backend.common"] = "gimlet/backend/common.lua",
["gimlet.backend.nginx"] = "gimlet/backend/nginx.lua",
["gimlet.backend.wsapi"] = "gimlet/backend/wsapi.lua",
},
install = {
bin = { "bin/gimlet", }
}
}