Skip to content

Instantly share code, notes, and snippets.

@ninformations
Created November 28, 2017 04:46
Show Gist options
  • Save ninformations/86e476aea77e687381e26c060e129e7b to your computer and use it in GitHub Desktop.
Save ninformations/86e476aea77e687381e26c060e129e7b to your computer and use it in GitHub Desktop.
Arangodb client for lua, using REST Apis.
package = "lua-arangodb"
version = "0.0.1-1"
source = {
url = "..."
}
description = {
summary = "Arangodb client for lua, using REST Apis.",
homepage = "...",
maintainer = "...",
license = "..."
}
dependencies = {
"lua = 5.1",
"ansicolors = 1.0.2-3",
"busted = 2.0.rc12-1",
"lua-cjson = 2.1.0-1",
"luafilesystem = 1.6.3-1",
"luaposix = 33.3.1-1",
"penlight = 1.3.2-2",
"lua-spore = 0.3.2-1"
}
build = {
type = "builtin",
modules = {
["Spore.Middleware.arangodb.middleware.auth"] = "src/arangodb/middleware/auth.lua",
["Spore.Middleware.arangodb.middleware.path"] = "src/arangodb/middleware/path.lua",
["arangodb.client"] = "src/arangodb/client.lua",
["arangodb.class"] = "src/helpers/class.lua",
["arangodb.split"] = "src/helpers/split.lua",
["arangodb.print_r"] = "src/helpers/print_r.lua",
["swagger.client"] = "src/swagger/client.lua"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment