2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
# Parses root .gitattributes file at a given ref
|
|
|
|
class AttributesAtRefParser
|
|
|
|
delegate :attributes, to: :@parser
|
|
|
|
|
|
|
|
def initialize(repository, ref)
|
|
|
|
blob = repository.blob_at(ref, '.gitattributes')
|
|
|
|
|
|
|
|
@parser = AttributesParser.new(blob&.data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|