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
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4.1/lib/active_support/encrypted_configuration.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/activesupport-6.1.4.1/lib/active_support/encrypted_configuration.rb
activesupport-6.1.4.1 lib/active_support/encrypted_configuration.rb
activesupport-6.0.4.1 lib/active_support/encrypted_configuration.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/activesupport-6.1.4/lib/active_support/encrypted_configuration.rb
mumukit-content-type-1.11.1 vendor/bundle/ruby/2.6.0/gems/activesupport-6.0.4/lib/active_support/encrypted_configuration.rb
activesupport-6.1.4 lib/active_support/encrypted_configuration.rb
activesupport-6.0.4 lib/active_support/encrypted_configuration.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/activesupport-6.1.3.1/lib/active_support/encrypted_configuration.rb
activesupport-6.0.3.7 lib/active_support/encrypted_configuration.rb
activesupport-6.1.3.2 lib/active_support/encrypted_configuration.rb
activesupport-6.1.3.1 lib/active_support/encrypted_configuration.rb
activesupport-6.0.3.6 lib/active_support/encrypted_configuration.rb
activesupport-6.1.3 lib/active_support/encrypted_configuration.rb
activesupport-6.1.2.1 lib/active_support/encrypted_configuration.rb
activesupport-6.0.3.5 lib/active_support/encrypted_configuration.rb
activesupport-6.1.2 lib/active_support/encrypted_configuration.rb
activesupport-6.1.1 lib/active_support/encrypted_configuration.rb
activesupport-6.1.0 lib/active_support/encrypted_configuration.rb
activesupport-6.1.0.rc2 lib/active_support/encrypted_configuration.rb