gitlabhq/app/models/tree.rb

26 lines
449 B
Ruby
Raw Normal View History

2011-11-20 21:32:12 +01:00
class Tree
attr_accessor :path, :tree, :project, :ref
delegate :contents,
:basename,
:name,
:data,
2011-11-21 07:16:10 +01:00
:mime_type,
2011-11-20 21:32:12 +01:00
:text?,
:colorize,
:to => :tree
def initialize(raw_tree, project, ref = nil, path = nil)
@project, @ref, @path = project, ref, path,
@tree = if path
raw_tree / path
else
raw_tree
end
end
def is_blob?
tree.is_a?(Grit::Blob)
end
end