Sha256: 4845ccceb8ca0dece950f7a728b9619c4dd0d90de18e3c0fd9f3504cf6359540

Contents?: true

Size: 1.07 KB

Versions: 93

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

require "yaml"
require "active_support/encrypted_file"
require "active_support/ordered_options"
require "active_support/core_ext/object/inclusion"
require "active_support/core_ext/module/delegation"

module ActiveSupport
  class EncryptedConfiguration < EncryptedFile
    delegate :[], :fetch, to: :config
    delegate_missing_to :options

    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

    # Allow a config to be started without a file present
    def read
      super
    rescue ActiveSupport::EncryptedFile::MissingContentError
      ""
    end

    def write(contents)
      deserialize(contents)

      super
    end

    def config
      @config ||= deserialize(read).deep_symbolize_keys
    end

    private
      def options
        @options ||= ActiveSupport::InheritableOptions.new(config)
      end

      def deserialize(config)
        YAML.load(config).presence || {}
      end
  end
end

Version data entries

93 entries across 91 versions & 13 rubygems

Version Path
activesupport-6.1.7.10 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.9 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.8 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.7 lib/active_support/encrypted_configuration.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.6 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.5 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.4 lib/active_support/encrypted_configuration.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/activesupport-6.1.6.1/lib/active_support/encrypted_configuration.rb
mumukit-content-type-1.12.1 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/encrypted_configuration.rb
mumukit-content-type-1.12.0 vendor/bundle/ruby/2.7.0/gems/activesupport-6.0.6.1/lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.3 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.2 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7.1 lib/active_support/encrypted_configuration.rb
activesupport-6.0.6.1 lib/active_support/encrypted_configuration.rb
activesupport-6.1.7 lib/active_support/encrypted_configuration.rb
activesupport-6.0.6 lib/active_support/encrypted_configuration.rb
activesupport-6.1.6.1 lib/active_support/encrypted_configuration.rb
activesupport-6.0.5.1 lib/active_support/encrypted_configuration.rb
activesupport-6.0.5 lib/active_support/encrypted_configuration.rb