-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlapis-exceptions-dev-1.rockspec
37 lines (32 loc) · 1.23 KB
/
lapis-exceptions-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
package = "lapis-exceptions"
version = "dev-1"
source = {
url = "git://github.com/leafo/lapis-exceptions.git"
}
description = {
summary = "Track Lapis exceptions to database and email when they happen",
license = "MIT",
maintainer = "Leaf Corcoran <[email protected]>",
}
dependencies = {
"lua == 5.1",
"lapis",
"tableshape",
}
build = {
type = "builtin",
modules = {
["lapis.exceptions"] = "lapis/exceptions.lua",
["lapis.exceptions.email"] = "lapis/exceptions/email.lua",
["lapis.exceptions.flow"] = "lapis/exceptions/flow.lua",
["lapis.exceptions.helpers"] = "lapis/exceptions/helpers.lua",
["lapis.exceptions.migrations"] = "lapis/exceptions/migrations.lua",
["lapis.exceptions.model"] = "lapis/exceptions/model.lua",
["lapis.exceptions.models"] = "lapis/exceptions/models.lua",
["lapis.exceptions.models.exception_requests"] = "lapis/exceptions/models/exception_requests.lua",
["lapis.exceptions.models.exception_types"] = "lapis/exceptions/models/exception_types.lua",
["lapis.exceptions.remote_addr"] = "lapis/exceptions/remote_addr.lua",
["lapis.exceptions.schema"] = "lapis/exceptions/schema.lua",
["lapis.features.exception_tracking"] = "lapis/features/exception_tracking.lua",
}
}