class Rugged::Tree

def each_blob

Iterate over the blobs in this tree
def each_blob
  self.each { |e| yield e if e[:type] == :blob }
end