Sha256: 4e682470dd35524f8ee23330e78007aa15a84ae40676758d0b45f31a67973feb

Contents?: true

Size: 1.54 KB

Versions: 5

Compression:

Stored size: 1.54 KB

Contents

module Hashie
  module Extensions
    module KeyConflictWarning
      class CannotDisableMashWarnings < StandardError
        def initialize
          super(
            'You cannot disable warnings on the base Mash class. ' \
            'Please subclass the Mash and disable it in the subclass.'
          )
        end
      end

      # Disable the logging of warnings based on keys conflicting keys/methods
      #
      # @api semipublic
      # @return [void]
      def disable_warnings(*method_keys)
        raise CannotDisableMashWarnings if self == Hashie::Mash
        if method_keys.any?
          disabled_warnings.concat(method_keys).tap(&:flatten!).uniq!
        else
          disabled_warnings.clear
        end

        @disable_warnings = true
      end

      # Checks whether this class disables warnings for conflicting keys/methods
      #
      # @api semipublic
      # @return [Boolean]
      def disable_warnings?(method_key = nil)
        return disabled_warnings.include?(method_key) if disabled_warnings.any? && method_key
        @disable_warnings ||= false
      end

      # Returns an array of methods that this class disables warnings for.
      #
      # @api semipublic
      # @return [Boolean]
      def disabled_warnings
        @_disabled_warnings ||= []
      end

      # Inheritance hook that sets class configuration when inherited.
      #
      # @api semipublic
      # @return [void]
      def inherited(subclass)
        super
        subclass.disable_warnings(disabled_warnings) if disable_warnings?
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/hashie-5.0.0/lib/hashie/extensions/key_conflict_warning.rb
hashie-5.0.0 lib/hashie/extensions/key_conflict_warning.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/hashie-4.1.0/lib/hashie/extensions/key_conflict_warning.rb
hashie-4.1.0 lib/hashie/extensions/key_conflict_warning.rb
hashie-4.0.0 lib/hashie/extensions/key_conflict_warning.rb