Sha256: 860cdd129af1dff26ab45b9ccb77938e80e374c3cc2a5f0c45f0916cbc499e6b

Contents?: true

Size: 895 Bytes

Versions: 2

Compression:

Stored size: 895 Bytes

Contents

module Gitlab
  # Converts hashes to the objects.
  class ObjectifiedHash
    # Creates a new ObjectifiedHash object.
    def initialize(hash)
      @hash = hash
      @data = hash.inject({}) do |data, (key, value)|
        value = ObjectifiedHash.new(value) if value.is_a? Hash
        data[key.to_s] = value
        data
      end
    end

    # @return [Hash] The original hash.
    def to_hash
      @hash
    end
    alias_method :to_h, :to_hash

    # @return [String] Formatted string with the class name, object id and original hash.
    def inspect
      "#<#{self.class}:#{object_id} {hash: #{@hash.inspect}}"
    end

    # Delegate to ObjectifiedHash.
    def method_missing(key)
      @data.key?(key.to_s) ? @data[key.to_s] : nil
    end

    def respond_to?(method_name, include_private=false)
      @hash.keys.map(&:to_sym).include?(method_name.to_sym) || super
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gitlab-3.6.1 lib/gitlab/objectified_hash.rb
gitlab-3.6.0 lib/gitlab/objectified_hash.rb