debian-mirror-gitlab/lib/gitlab/git/attributes_at_ref_parser.rb
2018-03-17 18:26:18 +05:30

15 lines
329 B
Ruby

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