-- gall.lua -- -- Git Abstration Layer for Lua -- Top level -- -- Copyright 2012 Daniel Silverstone -- local API_VERSION = 0 local ABI_VERSION = 0 local VERSION = "Gall v1." .. tostring(API_VERSION) local util = require "gall.util" local ll = require "gall.ll" local repository = require "gall.repository" local tag = require "gall.tag" local commit = require "gall.commit" local tree = require "gall.tree" local object = require "gall.object" return { _API_VERSION = API_VERSION, _ABI_VERSION = ABI_VERSION, VERSION = VERSION, repository = repository, tag = tag, commit = commit, tree = tree, object = object, ll = ll, util = util, }