Module: LondonCab::Auth::Config

Extended by:
Config
Included in:
Config
Defined in:
lib/london_cab_auth/config.rb

Constant Summary collapse

ATTRIBUTES =
[
  :endpoint,
  :user_agent,
  :username,
  :password,
  :logger
].freeze

Instance Method Summary collapse

Instance Method Details

#resetObject



16
17
18
19
20
21
22
# File 'lib/london_cab_auth/config.rb', line 16

def reset
  self.endpoint   = 'http://65.182.108.16:22710'
  self.user_agent = "LondonCab::Auth/#{LondonCab::Auth::VERSION}"
  self.username   = nil
  self.password   = nil
  self.logger     = nil
end