Class: Campi::Configuration
- Inherits:
-
Object
- Object
- Campi::Configuration
- Defined in:
- lib/campi.rb
Instance Attribute Summary collapse
-
#application_contact ⇒ Object
Returns the value of attribute application_contact.
-
#application_name ⇒ Object
Returns the value of attribute application_name.
-
#basecamp_id ⇒ Object
Returns the value of attribute basecamp_id.
-
#password ⇒ Object
Returns the value of attribute password.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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_contact ⇒ Object
Returns the value of attribute application_contact.
26 27 28 |
# File 'lib/campi.rb', line 26 def application_contact @application_contact end |
#application_name ⇒ Object
Returns the value of attribute application_name.
26 27 28 |
# File 'lib/campi.rb', line 26 def application_name @application_name end |
#basecamp_id ⇒ Object
Returns the value of attribute basecamp_id.
26 27 28 |
# File 'lib/campi.rb', line 26 def basecamp_id @basecamp_id end |
#password ⇒ Object
Returns the value of attribute password.
26 27 28 |
# File 'lib/campi.rb', line 26 def password @password end |
#username ⇒ Object
Returns the value of attribute username.
26 27 28 |
# File 'lib/campi.rb', line 26 def username @username end |