Sha256: e663bf176d8700a36f2525b0470f96740ccfec82db985343c2d505183642e728
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
module Yubikey # Defines constants and methods related to configuration module Configuration # An array of valid keys in the options hash when configuring a Yubikey::OTP::Verify VALID_OPTIONS_KEYS = [ :api_id, :url, :api_key, :certificate_chain, ].freeze # By default, we want to point to Yubicloud DEFAULT_API_URL = 'https://api.yubico.com/wsapi/2.0/' # By default, don't have an api_id DEFAULT_API_ID = nil # By default, don't have an api_key DEFAULT_API_KEY = nil # Default location of the Yubico certificate chain DEFAULT_CERTIFICATE_CHAIN = File.join(File.dirname(__FILE__), '../cert/chain.pem') # @private attr_accessor *VALID_OPTIONS_KEYS # When this module is extended, set all configuration options to their default values def self.extended(base) base.reset end # Convenience method to allow configuration options to be set in a block def configure yield self end # Create a hash of options and their values def options VALID_OPTIONS_KEYS.inject({}) do |option, key| option.merge!(key => send(key)) end end # Reset all configuration options to defaults def reset self.api_id = DEFAULT_API_ID self.url = DEFAULT_API_URL self.api_key = DEFAULT_API_KEY self.certificate_chain = DEFAULT_CERTIFICATE_CHAIN end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
yubikey-1.4.1 | lib/yubikey/configuration.rb |
yubikey-1.4.0 | lib/yubikey/configuration.rb |