Module: SecureConf
- Defined in:
- lib/secure_conf.rb,
lib/secure_conf/config.rb,
lib/secure_conf/storage.rb,
lib/secure_conf/version.rb,
lib/secure_conf/encrypter.rb,
lib/secure_conf/serializer.rb,
lib/secure_conf/storage/yaml.rb,
lib/secure_conf/serializer/json.rb,
lib/secure_conf/serializer/marshal.rb
Defined Under Namespace
Modules: Serializer, Storage
Classes: Config, Encrypter
Constant Summary
collapse
- VERSION =
"1.1.0"
Class Method Summary
collapse
Class Method Details
.default=(encrypter) ⇒ Object
13
14
15
|
# File 'lib/secure_conf.rb', line 13
def default=(encrypter)
@@default = encrypter
end
|
.method_missing(method, *args) ⇒ Object
17
18
19
|
# File 'lib/secure_conf.rb', line 17
def method_missing(method, *args)
default.send(method, *args)
end
|