class ActiveEncryption::Configuration::Store
The ActiveEncryption::Configuration::Store
class stores the gem configuration.
Constants
- DEFAULTS
Public Class Methods
new()
click to toggle source
# File lib/active_encryption/configuration/store.rb, line 17 def initialize reset end
Public Instance Methods
reset()
click to toggle source
# File lib/active_encryption/configuration/store.rb, line 21 def reset DEFAULTS.each do |key, value| public_send("#{key}=", value) end end