method

deep_symbolize_keys

rails latest stable - Class: ActiveSupport::EncryptedConfiguration

Method not available on this version

This method is only available on newer versions. The first available version (v8.0.0) is shown here.

deep_symbolize_keys(hash)
private

No documentation available.

# File activesupport/lib/active_support/encrypted_configuration.rb, line 94
      def deep_symbolize_keys(hash)
        hash.deep_transform_keys do |key|
          key.to_sym
        rescue NoMethodError
          raise InvalidKeyError.new(content_path, key)
        end
      end