Class: DockerRegistry2::Blob

Inherits:
Object
  • Object
show all
Defined in:
lib/registry/blob.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(headers, body) ⇒ Blob

Returns a new instance of Blob.



5
6
7
8
# File 'lib/registry/blob.rb', line 5

def initialize(headers, body)
  @headers = headers
  @body = body
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



3
4
5
# File 'lib/registry/blob.rb', line 3

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



3
4
5
# File 'lib/registry/blob.rb', line 3

def headers
  @headers
end