debian-mirror-gitlab/lib/container_registry/config.rb
2020-05-24 23:13:21 +05:30

19 lines
296 B
Ruby

# frozen_string_literal: true
module ContainerRegistry
class Config
attr_reader :tag, :blob, :data
def initialize(tag, blob)
@tag, @blob = tag, blob
@data = Gitlab::Json.parse(blob.data)
end
def [](key)
return unless data
data[key]
end
end
end