gitlab-org--gitlab-foss/app/models/tree.rb

29 lines
589 B
Ruby
Raw Normal View History

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