Class: Quandora::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/quandora/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



5
6
7
8
9
# File 'lib/quandora/configuration.rb', line 5

def initialize
  @url = ''
  @username = ''
  @password = ''
end

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



3
4
5
# File 'lib/quandora/configuration.rb', line 3

def password
  @password
end

#urlObject

Returns the value of attribute url.



3
4
5
# File 'lib/quandora/configuration.rb', line 3

def url
  @url
end

#usernameObject

Returns the value of attribute username.



3
4
5
# File 'lib/quandora/configuration.rb', line 3

def username
  @username
end