From 646304a6e7c3b2c442a0a7db995629e7009c3a14 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Sun, 11 Nov 2007 17:59:18 -0800 Subject: added documentation and a license file --- README | 50 +++++--------------------------------------------- 1 file changed, 5 insertions(+), 45 deletions(-) (limited to 'README') diff --git a/README b/README index 5f9c69a..5e80466 100644 --- a/README +++ b/README @@ -1,8 +1,11 @@ -Git Library for Ruby ------------------------------ +== Git Library for Ruby + += What it is Library for using Git in Ruby. += Roadmap + Right now I'm forking calls to the 'git' binary, but eventually I'll replace that with either C bindings to libgit or libgit-thin, or I'll write pure ruby @@ -11,46 +14,3 @@ handlers for at least some of the Git stuff. See EXAMPLES file for, well, examples. - -Git::Object - - sha - - type - - cat_file - - raw - -Git::Commit - - tree - - parent - - author # git author - - author_date - - committer # git author - - committer_date / date - - message - -Git::Tree - - children - - blobs/files - - subtrees/subdirs - -Git::Blob << File - - size - - permissions - -Git::Tag - -Git::Hash - - abbrev/short - -Git::Repository - - heads - - refs - - branches - -Git::WorkingDirectory - - foreach - - glob # returns Git::Files - -Git::File << File - - log - - tags - -- cgit