Methods

Class Public methods

new(config_path:, key_path:, env_key:, raise_if_missing_key:)

📝 Source code
# File activesupport/lib/active_support/encrypted_configuration.rb, line 14
    def initialize(config_path:, key_path:, env_key:, raise_if_missing_key:)
      super content_path: config_path, key_path: key_path,
        env_key: env_key, raise_if_missing_key: raise_if_missing_key
    end
🔎 See on GitHub

Instance Public methods

config()

📝 Source code
# File activesupport/lib/active_support/encrypted_configuration.rb, line 32
    def config
      @config ||= deserialize(read).deep_symbolize_keys
    end
🔎 See on GitHub

read()

Allow a config to be started without a file present

📝 Source code
# File activesupport/lib/active_support/encrypted_configuration.rb, line 20
    def read
      super
    rescue ActiveSupport::EncryptedFile::MissingContentError
      ""
    end
🔎 See on GitHub

write(contents)

📝 Source code
# File activesupport/lib/active_support/encrypted_configuration.rb, line 26
    def write(contents)
      deserialize(contents)

      super
    end
🔎 See on GitHub