class Dhall::Rails::EncryptedConfiguration

Private Instance Methods

deserialize(config) click to toggle source
Calls superclass method
# File lib/dhall/rails/encrypted_configuration.rb, line 10
def deserialize(config)
        if content_path.to_s =~ /\.dhall\.enc\Z/
                config.blank? ? {} : Dhall::Rails.load_decoded(config)
        else
                super
        end
end