Class: Docker::Remote::Credentials

Inherits:
Object
  • Object
show all
Defined in:
lib/docker/remote/credentials.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(username, password) ⇒ Credentials

Returns a new instance of Credentials.



6
7
8
9
# File 'lib/docker/remote/credentials.rb', line 6

def initialize(username, password)
  @username = username
  @password = password
end

Instance Attribute Details

#passwordObject (readonly)

Returns the value of attribute password.



4
5
6
# File 'lib/docker/remote/credentials.rb', line 4

def password
  @password
end

#usernameObject (readonly)

Returns the value of attribute username.



4
5
6
# File 'lib/docker/remote/credentials.rb', line 4

def username
  @username
end