diff options
author | nopedial <shafez@ike-2.local> | 2013-10-26 00:16:19 +0200 |
---|---|---|
committer | nopedial <shafez@ike-2.local> | 2013-10-26 00:16:19 +0200 |
commit | a85509f5e288c9ccc70400f2ce93842e57a1af23 (patch) | |
tree | fdb221f5cfbb1c2d205742dbf1f5d53c4505f08e /lib/oxidized/output/git.rb | |
parent | 056ecb1a94d24085497d1baa304645390052e50b (diff) |
add fetch API to git output
Diffstat (limited to 'lib/oxidized/output/git.rb')
-rw-r--r-- | lib/oxidized/output/git.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/oxidized/output/git.rb b/lib/oxidized/output/git.rb index 202893c..f23b35a 100644 --- a/lib/oxidized/output/git.rb +++ b/lib/oxidized/output/git.rb @@ -37,6 +37,15 @@ class Git < Output end end + def fetch node, group + begin + repo = Repo.new(@cfg[:repo]) + (repo.tree / node).data + rescue + 'node not found' + end + end + private def update_repo repo, file, data, msg, actor |