debian-mirror-gitlab/lib/container_registry/config.rb
2016-06-02 11:05:42 +05:30

17 lines
257 B
Ruby

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