-
Notifications
You must be signed in to change notification settings - Fork 14
/
lua-handler-http-scm-0.rockspec
executable file
·39 lines (38 loc) · 1.33 KB
/
lua-handler-http-scm-0.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
#!/usr/bin/env lua
package = 'lua-handler-http'
version = 'scm-0'
source = {
url = 'git://github.com/Neopallium/lua-handlers.git'
}
description = {
summary = "HTTP client handler class.",
detailed = '',
homepage = 'https://github.com/Neopallium/lua-handlers',
license = 'MIT',
}
dependencies = {
'lua-handler',
'lua-http-parser',
'luasocket',
}
build = {
type = 'none',
install = {
lua = {
['handler.http.client'] = "handler/http/client.lua",
['handler.http.client.connection'] = "handler/http/client/connection.lua",
['handler.http.client.hosts'] = "handler/http/client/hosts.lua",
['handler.http.client.request'] = "handler/http/client/request.lua",
['handler.http.client.response'] = "handler/http/client/response.lua",
['handler.http.chunked'] = "handler/http/chunked.lua",
['handler.http.server'] = "handler/http/server.lua",
['handler.http.server.hconnection'] = "handler/http/server/hconnection.lua",
['handler.http.server.error_handler'] = "handler/http/server/error_handler.lua",
['handler.http.server.request'] = "handler/http/server/request.lua",
['handler.http.server.response'] = "handler/http/server/response.lua",
['handler.http.headers'] = "handler/http/headers.lua",
['handler.http.file'] = "handler/http/file.lua",
['handler.http.form'] = "handler/http/form.lua",
}
}
}