Module: HolisticAuth
- Defined in:
- lib/holistic_auth.rb,
lib/holistic_auth/errors.rb,
lib/holistic_auth/version.rb,
lib/holistic_auth/configuration.rb,
lib/holistic_auth/providers/stub.rb,
lib/holistic_auth/providers/google.rb,
lib/holistic_auth/providers/outlook.rb,
lib/holistic_auth/end_point_listener.rb,
lib/holistic_auth/providers/ms_graph.rb,
lib/holistic_auth/client_token_issuer.rb,
lib/holistic_auth/orm_handlers/active_record.rb,
lib/holistic_auth/providers/generic_provider.rb
Defined Under Namespace
Modules: OrmHandlers, Providers Classes: ClientTokenIssuer, Configuration, EmailNotVerifiedError, EndPointListener
Constant Summary collapse
- VERSION =
'0.9.8'.freeze
Class Attribute Summary collapse
-
.configuration ⇒ Object
Returns the value of attribute configuration.
Class Method Summary collapse
Class Attribute Details
.configuration ⇒ Object
Returns the value of attribute configuration.
11 12 13 |
# File 'lib/holistic_auth/configuration.rb', line 11 def configuration @configuration end |
Class Method Details
.configure {|configuration| ... } ⇒ Object
14 15 16 17 |
# File 'lib/holistic_auth/configuration.rb', line 14 def self.configure self.configuration ||= Configuration.new yield(configuration) end |