From 6bbead02aa2a60e7d50e68f3b2c98a14c26b2d81 Mon Sep 17 00:00:00 2001 From: scott Chacon Date: Tue, 27 Nov 2007 08:42:26 -0800 Subject: added ls-tree to gitr --- lib/git/base.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/git/base.rb') diff --git a/lib/git/base.rb b/lib/git/base.rb index 31ba9ff..e9ffc61 100644 --- a/lib/git/base.rb +++ b/lib/git/base.rb @@ -428,7 +428,11 @@ module Git def revparse(objectish) self.lib.revparse(objectish) end - + + def ls_tree(objectish) + self.lib.ls_tree(objectish) + end + def cat_file(objectish) self.lib.object_contents(objectish) end -- cgit