Class: GcalMapper::Authentification::Base
- Inherits:
-
Object
- Object
- GcalMapper::Authentification::Base
- Defined in:
- lib/gcal_mapper/authentification/base.rb
Overview
Base class for authentification methods
Instance Method Summary collapse
-
#access_token ⇒ Object
raise error if this method is called -> mean that child class has not implemeted this method.
-
#refresh_token ⇒ Object
raise error if this method is called -> mean that child class has not implemeted this method.
Instance Method Details
#access_token ⇒ Object
raise error if this method is called -> mean that child class has not implemeted this method
9 10 11 |
# File 'lib/gcal_mapper/authentification/base.rb', line 9 def access_token raise NotImplementedError end |
#refresh_token ⇒ Object
raise error if this method is called -> mean that child class has not implemeted this method
14 15 16 |
# File 'lib/gcal_mapper/authentification/base.rb', line 14 def refresh_token raise NotImplementedError end |