Class: REIformslive::Credentials

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(username: '', password: '') ⇒ Credentials

Returns a new instance of Credentials.



5
6
7
# File 'lib/reiformslive/credentials.rb', line 5

def initialize username: '', password: ''
  @username, @password = username, password
end

Instance Attribute Details

#passwordObject (readonly)

Returns the value of attribute password.



3
4
5
# File 'lib/reiformslive/credentials.rb', line 3

def password
  @password
end

#usernameObject (readonly)

Returns the value of attribute username.



3
4
5
# File 'lib/reiformslive/credentials.rb', line 3

def username
  @username
end