Skip to content

Commit b292199

Browse files
2.0.0 release
1 parent a988492 commit b292199

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

rockspecs/luchia-2.0.0-1.rockspec

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
package = "Luchia"
2+
version = "2.0.0-1"
3+
source = {
4+
url = "git://github.com/thehunmonkgroup/luchia.git",
5+
branch = "v2.0.0",
6+
}
7+
description = {
8+
summary = "Lua API for CouchDB.",
9+
detailed = [[
10+
Luchia provides both low-level and high-level access to CouchDB
11+
(http://couchdb.apache.org), using an object-oriented approach.
12+
13+
All of the basic operations are supported, including:
14+
CRUD operations on databases, documents, and attachments (both inline
15+
and standalone);
16+
uuid generation (server side);
17+
various utility functions.
18+
]],
19+
homepage = "https://github.com/thehunmonkgroup/luchia",
20+
license = "Modified BSD",
21+
}
22+
dependencies = {
23+
"lua >= 5.1",
24+
"lua-cjson",
25+
"lualogging",
26+
"luasocket",
27+
}
28+
build = {
29+
type = "builtin",
30+
modules = {
31+
luchia = "src/luchia.lua",
32+
["luchia.core.attachment"] = "src/luchia/core/attachment.lua",
33+
["luchia.core.document"] = "src/luchia/core/document.lua",
34+
["luchia.core.log"] = "src/luchia/core/log.lua",
35+
["luchia.core.server"] = "src/luchia/core/server.lua",
36+
["luchia.conf"] = "src/luchia/conf.lua",
37+
["luchia.database"] = "src/luchia/database.lua",
38+
["luchia.document"] = "src/luchia/document.lua",
39+
["luchia.utilities"] = "src/luchia/utilities.lua",
40+
},
41+
install = {
42+
bin = {
43+
luchia_get = "src/luchia_get",
44+
},
45+
},
46+
}
47+
48+
-- vim: set filetype=lua

0 commit comments

Comments
 (0)