Class: Pergola::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



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

def initialize
  @username  = 'email'
  @password  = '1234567890ABC'
end

Instance Attribute Details

#passwordObject

Returns the value of attribute password.



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

def password
  @password
end

#usernameObject

Returns the value of attribute username.



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

def username
  @username
end