Module: Oxd
- Defined in:
- lib/oxd-ruby.rb,
lib/oxd/config.rb,
lib/oxd/errors.rb,
lib/oxd/version.rb,
lib/oxd/uma_commands.rb,
lib/oxd/oxd_connector.rb,
lib/oxd/client_oxd_commands.rb,
lib/generators/oxd/config_generator.rb
Overview
Note:
supports oxd-version 3.1.2
Defined Under Namespace
Modules: Generators Classes: ClientOxdCommands, Configuration, InvalidRequestError, InvalidTicketError, NeedInfoError, OxdConnector, ServerError, UMACommands
Constant Summary collapse
- VERSION =
version of the oxd-ruby gem
"1.0.2"
Class Method Summary collapse
-
.config ⇒ Object
Global settings for oxd.
-
.configure { ... } ⇒ Object
Configures global settings for oxd.
Class Method Details
.config ⇒ Object
Global settings for oxd
21 22 23 |
# File 'lib/oxd/config.rb', line 21 def self.config @config end |
.configure { ... } ⇒ Object
Configures global settings for oxd
13 14 15 16 17 18 |
# File 'lib/oxd/config.rb', line 13 def self.configure(&block) @config ||= Oxd::Configuration.new if block_given? yield(@config) end end |