Class: Teamlab::Config
- Inherits:
-
Object
- Object
- Teamlab::Config
- Includes:
- ActiveSupport::Configurable
- Defined in:
- lib/teamlab/config.rb
Instance Method Summary collapse
- #default_configuration ⇒ Object
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
Returns a new instance of Config.
27 28 29 |
# File 'lib/teamlab/config.rb', line 27 def initialize default_configuration end |
Instance Method Details
#default_configuration ⇒ Object
31 32 33 34 35 36 37 |
# File 'lib/teamlab/config.rb', line 31 def default_configuration self.server = 'https://teamlab.com' self.api_path = '/api/2.0/' self.api_additive = '' self.username = 'user' self.password = 'password' end |