summaryrefslogtreecommitdiff
path: root/git2.nobj.lua
diff options
context:
space:
mode:
authorRobert G. Jakabosky <bobby@neoawareness.com>2011-01-07 04:09:39 -0800
committerRobert G. Jakabosky <bobby@neoawareness.com>2011-01-07 04:09:39 -0800
commit0a953e98d873a2344a3296852401c6e7722fb4a3 (patch)
tree846cb7570a8fcdf3cfbf1a57c1d7c77830c9f645 /git2.nobj.lua
downloadluagit2-0a953e98d873a2344a3296852401c6e7722fb4a3.tar.gz
Complete un-tested bindings for full API except git_odb_backend.
Diffstat (limited to 'git2.nobj.lua')
-rw-r--r--git2.nobj.lua28
1 files changed, 28 insertions, 0 deletions
diff --git a/git2.nobj.lua b/git2.nobj.lua
new file mode 100644
index 0000000..a7292e9
--- /dev/null
+++ b/git2.nobj.lua
@@ -0,0 +1,28 @@
+
+c_module "git2" {
+-- module settings.
+use_globals = false,
+hide_meta_info = false, --true,
+
+include "git2.h",
+
+subfiles {
+"repository.nobj.lua",
+"database.nobj.lua",
+"rawobject.nobj.lua",
+"index.nobj.lua",
+"index_entry.nobj.lua",
+"otype.nobj.lua",
+"oid.nobj.lua",
+"error.nobj.lua",
+"object.nobj.lua",
+"blob.nobj.lua",
+"signature.nobj.lua",
+"commit.nobj.lua",
+"tree.nobj.lua",
+"tree_entry.nobj.lua",
+"tag.nobj.lua",
+"revwalk.nobj.lua",
+},
+}
+