gitlabhq/app/models/tree.rb
2012-09-27 02:05:53 -07:00

29 lines
589 B
Ruby

class Tree
include Linguist::BlobHelper
attr_accessor :path, :tree, :project, :ref
delegate :contents, :basename, :name, :data, :mime_type,
:mode, :size, :text?, :colorize, to: :tree
def initialize(raw_tree, project, ref = nil, path = nil)
@project, @ref, @path = project, ref, path
@tree = if path.present?
raw_tree / path.dup.force_encoding('ascii-8bit')
else
raw_tree
end
end
def is_blob?
tree.is_a?(Grit::Blob)
end
def invalid?
tree.nil?
end
def empty?
data.blank?
end
end