2011-11-20 21:32:12 +01:00
|
|
|
class Tree
|
2012-09-17 18:38:59 +02:00
|
|
|
include Linguist::BlobHelper
|
2011-11-20 21:32:12 +01:00
|
|
|
attr_accessor :path, :tree, :project, :ref
|
|
|
|
|
2012-09-27 08:20:36 +02:00
|
|
|
delegate :contents, :basename, :name, :data, :mime_type,
|
|
|
|
:mode, :size, :text?, :colorize, to: :tree
|
2011-11-20 21:32:12 +01:00
|
|
|
|
|
|
|
def initialize(raw_tree, project, ref = nil, path = nil)
|
2012-09-17 18:38:59 +02:00
|
|
|
@project, @ref, @path = project, ref, path
|
|
|
|
@tree = if path.present?
|
2012-09-11 13:18:14 +02:00
|
|
|
raw_tree / path.dup.force_encoding('ascii-8bit')
|
2011-11-20 21:32:12 +01:00
|
|
|
else
|
|
|
|
raw_tree
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_blob?
|
|
|
|
tree.is_a?(Grit::Blob)
|
|
|
|
end
|
2011-11-22 13:50:47 +01:00
|
|
|
|
2012-09-17 18:38:59 +02:00
|
|
|
def invalid?
|
|
|
|
tree.nil?
|
|
|
|
end
|
|
|
|
|
2011-11-22 13:50:47 +01:00
|
|
|
def empty?
|
|
|
|
data.blank?
|
|
|
|
end
|
2011-11-20 21:32:12 +01:00
|
|
|
end
|