gitlab-org--gitlab-foss/lib/gitlab/git/lfs_pointer_file.rb

35 lines
655 B
Ruby

# frozen_string_literal: true
module Gitlab
module Git
class LfsPointerFile
VERSION = "https://git-lfs.github.com/spec/v1"
VERSION_LINE = "version #{VERSION}"
def initialize(data)
@data = data
end
def pointer
@pointer ||= <<~FILE
#{VERSION_LINE}
oid sha256:#{sha256}
size #{size}
FILE
end
def size
@size ||= @data.bytesize
end
def sha256
@sha256 ||= Digest::SHA256.hexdigest(@data)
end
def inspect
"#<#{self.class}:#{object_id} @size=#{size}, @sha256=#{sha256.inspect}>"
end
end
end
end