summaryrefslogtreecommitdiff
path: root/lib/gall.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gall.lua')
-rw-r--r--lib/gall.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/gall.lua b/lib/gall.lua
new file mode 100644
index 0000000..4a2dbb8
--- /dev/null
+++ b/lib/gall.lua
@@ -0,0 +1,17 @@
+-- gall.lua
+--
+-- Git Abstration Layer for Lua -- Top level
+--
+-- Copyright 2012 Daniel Silverstone <dsilvers@digital-scurf.org>
+--
+
+local API_VERSION = 0
+local ABI_VERSION = 0
+
+local VERSION = "Gall v1." .. tostring(API_VERSION)
+
+return {
+ _API_VERSION = API_VERSION,
+ _ABI_VERSION = ABI_VERSION,
+ VERSION = VERSION,
+}