Skip to content

Commit

Permalink
2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
thehunmonkgroup committed Feb 26, 2021
1 parent a988492 commit b292199
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions rockspecs/luchia-2.0.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
package = "Luchia"
version = "2.0.0-1"
source = {
url = "git://github.com/thehunmonkgroup/luchia.git",
branch = "v2.0.0",
}
description = {
summary = "Lua API for CouchDB.",
detailed = [[
Luchia provides both low-level and high-level access to CouchDB
(http://couchdb.apache.org), using an object-oriented approach.
All of the basic operations are supported, including:
CRUD operations on databases, documents, and attachments (both inline
and standalone);
uuid generation (server side);
various utility functions.
]],
homepage = "https://github.com/thehunmonkgroup/luchia",
license = "Modified BSD",
}
dependencies = {
"lua >= 5.1",
"lua-cjson",
"lualogging",
"luasocket",
}
build = {
type = "builtin",
modules = {
luchia = "src/luchia.lua",
["luchia.core.attachment"] = "src/luchia/core/attachment.lua",
["luchia.core.document"] = "src/luchia/core/document.lua",
["luchia.core.log"] = "src/luchia/core/log.lua",
["luchia.core.server"] = "src/luchia/core/server.lua",
["luchia.conf"] = "src/luchia/conf.lua",
["luchia.database"] = "src/luchia/database.lua",
["luchia.document"] = "src/luchia/document.lua",
["luchia.utilities"] = "src/luchia/utilities.lua",
},
install = {
bin = {
luchia_get = "src/luchia_get",
},
},
}

-- vim: set filetype=lua

0 comments on commit b292199

Please sign in to comment.