-
Notifications
You must be signed in to change notification settings - Fork 0
/
lusty-store-mysql-0.5-0.rockspec
32 lines (32 loc) · 1.19 KB
/
lusty-store-mysql-0.5-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
package = "lusty-store-mysql"
version = "0.5-0"
source = {
url = "https://github.com/Olivine-Labs/lusty-store-mysql/archive/v0.5.tar.gz",
dir = "lusty-store-mysql-0.5"
}
description = {
summary = "MySQL plugin for lusty persistence interface.",
detailed = [[
MySQL plugin for lusty persistence interface.
]],
homepage = "http://olivinelabs.com/lusty/",
license = "MIT <http://opensource.org/licenses/MIT>"
}
dependencies = {
"lua >= 5.1",
"lusty-log >= 0.2-0",
"lusty-store >= 0.1-0",
"busted >= 1.10-0"
}
build = {
type = "builtin",
modules = {
["lusty-store-mysql.store.mysql.get"] = "lusty-store-mysql/store/mysql/get.lua",
["lusty-store-mysql.store.mysql.post"] = "lusty-store-mysql/store/mysql/post.lua",
["lusty-store-mysql.store.mysql.patch"] = "lusty-store-mysql/store/mysql/patch.lua",
["lusty-store-mysql.store.mysql.delete"] = "lusty-store-mysql/store/mysql/delete.lua",
["lusty-store-mysql.store.mysql.connection"]= "lusty-store-mysql/store/mysql/connection.lua",
["lusty-store-mysql.store.mysql"] = "lusty-store-mysql/store/mysql.lua",
["lusty-store-mysql.query"] = "lusty-store-mysql/query.lua"
}
}