Sha256: 0aac2354465d6c05e2f906b40ce272f1de89eb89af0946f4d27383c7ca33451b

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 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 serialize(config)
        config.present? ? YAML.dump(config) : ""
      end

      def deserialize(config)
        config.present? ? YAML.load(config, content_path) : {}
      end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
activesupport-5.2.1.1 lib/active_support/encrypted_configuration.rb
activesupport-5.2.1 lib/active_support/encrypted_configuration.rb
activesupport-5.2.1.rc1 lib/active_support/encrypted_configuration.rb
monero_wallet_gen-0.1.0 vendor/bundle/ruby/2.3.0/gems/activesupport-5.2.0/lib/active_support/encrypted_configuration.rb
activesupport-5.2.0 lib/active_support/encrypted_configuration.rb
activesupport-5.2.0.rc2 lib/active_support/encrypted_configuration.rb
activesupport-5.2.0.rc1 lib/active_support/encrypted_configuration.rb