aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-12-07 22:45:12 +0000
committerMatthew Wild <mwild1@gmail.com>2009-12-07 22:45:12 +0000
commitd6d6e4d9daa4b43511fa287af616be259857429e (patch)
treed69a95dc03cd7f6812b4c8a49e3ff6a68c8d4104
parent2506ebf1e52bdd83007b0463f0a02ea1d6062be8 (diff)
downloadluaevent-prosody-d6d6e4d9daa4b43511fa287af616be259857429e.tar.gz
luaevent-prosody-d6d6e4d9daa4b43511fa287af616be259857429e.zip
Add _NAME and _VERSION fields to module
-rw-r--r--lua/luaevent.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/luaevent.lua b/lua/luaevent.lua
index a05de29..ffd54f5 100644
--- a/lua/luaevent.lua
+++ b/lua/luaevent.lua
@@ -5,6 +5,9 @@
module("luaevent", package.seeall)
require("luaevent.core")
+_NAME = "luaevent";
+_VERSION = "0.3 dev";
+
local EV_READ = luaevent.core.EV_READ
local EV_WRITE = luaevent.core.EV_WRITE
local base = luaevent.core.new()