Class: PansophyAuthenticator::Configuration::Base
- Inherits:
-
Object
- Object
- PansophyAuthenticator::Configuration::Base
- Includes:
- Memoizable
- Defined in:
- lib/pansophy_authenticator/configuration/base.rb
Instance Method Summary collapse
Instance Method Details
#errors ⇒ Object
18 19 20 21 |
# File 'lib/pansophy_authenticator/configuration/base.rb', line 18 def errors return ['Application is not defined'] if @application.nil? [] end |
#local? ⇒ Boolean
10 11 12 |
# File 'lib/pansophy_authenticator/configuration/base.rb', line 10 def local? false end |
#remote? ⇒ Boolean
14 15 16 |
# File 'lib/pansophy_authenticator/configuration/base.rb', line 14 def remote? !local? end |
#valid? ⇒ Boolean
23 24 25 |
# File 'lib/pansophy_authenticator/configuration/base.rb', line 23 def valid? verification.valid? end |