Class: Campi::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



28
29
30
31
32
33
34
# File 'lib/campi.rb', line 28

def initialize
  @basecamp_id = nil
  @username = nil
  @password = nil
  @application_name = nil
  @application_contact = nil
end

Instance Attribute Details

#application_contactObject

Returns the value of attribute application_contact.



26
27
28
# File 'lib/campi.rb', line 26

def application_contact
  @application_contact
end

#application_nameObject

Returns the value of attribute application_name.



26
27
28
# File 'lib/campi.rb', line 26

def application_name
  @application_name
end

#basecamp_idObject

Returns the value of attribute basecamp_id.



26
27
28
# File 'lib/campi.rb', line 26

def basecamp_id
  @basecamp_id
end

#passwordObject

Returns the value of attribute password.



26
27
28
# File 'lib/campi.rb', line 26

def password
  @password
end

#usernameObject

Returns the value of attribute username.



26
27
28
# File 'lib/campi.rb', line 26

def username
  @username
end