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.
26 27 28 |
# File 'lib/teamlab/config.rb', line 26 def initialize default_configuration end |
Instance Method Details
#default_configuration ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/teamlab/config.rb', line 30 def default_configuration self.server = 'https://teamlab.com' self.api_path = '/api/2.0/' self.api_additive = '' self.username = 'user' self.password = 'password' end |