package = "kong-plugin-myplugin"
version = "0.1.0-1"


supported_platforms = {"linux", "macosx" }
source = {
  url = "git://github.com/cammyle/kong-plugin",

}


description = {
  summary = "Kong is a scalable and customizable API Management Layer built on top of Nginx.",
  detailed = [[
      This is an example for the LuaRocks tutorial.
      Here we would put a detailed, typically
      paragraph-long description.
   ]],
  homepage = "git://github.com/cammyle/kong-plugin",
  license = "Apache 2.0",
}


dependencies = {
   "lua >= 5.1, < 5.4"
   -- If you depend on other rocks, add them here
}


local plugin_name = "myplugin"
build = {
  type = "builtin",
  modules = {
    -- TODO: add any additional code files added to the plugin
    ["kong.plugins."..plugin_name..".handler"] = "kong/plugins/"..plugin_name.."/handler.lua",
    ["kong.plugins."..plugin_name..".schema"] = "kong/plugins/"..plugin_name.."/schema.lua",
  }
}
