Class: Caesars::Hash

Inherits:
HASH_TYPE
  • Object
show all
Defined in:
lib/caesars/hash.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(meth) ⇒ Object



9
10
11
# File 'lib/caesars/hash.rb', line 9

def method_missing(meth)
  self[meth] if self.has_key?(meth)
end

Instance Method Details

#to_hash(hash = self) ⇒ Object

Returns a clone of itself and all children cast as ::Hash objects



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/caesars/hash.rb', line 14

def to_hash(hash=self)
  return hash unless hash.is_a?(Caesars::Hash) # nothing to do
  target = (Caesars::HASH_TYPE)[dup]
  hash.keys.each do |key|
    if hash[key].is_a? Caesars::Hash
      target[key] = hash[key].to_hash
      next
    elsif hash[key].is_a? Array
      target[key] = hash[key].collect { |h| to_hash(h) }  
      next
    end
    target[key] = hash[key]
  end
  target
end