Class: Gitlab::ObjectifiedHash

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab/objectified_hash.rb

Overview

Converts hashes to the objects.

Instance Method Summary collapse

Constructor Details

#initialize(hash) ⇒ ObjectifiedHash

Creates a new ObjectifiedHash object.



5
6
7
8
9
10
11
12
# File 'lib/gitlab/objectified_hash.rb', line 5

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

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(key) ⇒ Object

Delegate to ObjectifiedHash.



20
21
22
# File 'lib/gitlab/objectified_hash.rb', line 20

def method_missing(key)
  @data.key?(key.to_s) ? @data[key.to_s] : nil
end

Instance Method Details

#respond_to?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/gitlab/objectified_hash.rb', line 24

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

#to_hashObject Also known as: to_h



14
15
16
# File 'lib/gitlab/objectified_hash.rb', line 14

def to_hash
  @hash
end