method

deep_transform

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: EncryptedConfiguration
deep_transform(hash) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/encrypted_configuration.rb, line 84
      def deep_transform(hash)
        return hash unless hash.is_a?(Hash)

        h = ActiveSupport::OrderedOptions.new
        hash.each do |k, v|
          h[k] = deep_transform(v)
        end
        h
      end
Register or log in to add new notes.