Class: CFPropertyList::CFArray

Inherits:
Object
  • Object
show all
Defined in:
lib/read_ipa/plist_binary.rb

Instance Method Summary collapse

Instance Method Details

#to_hashObject



25
26
27
28
29
30
31
# File 'lib/read_ipa/plist_binary.rb', line 25

def to_hash
  hash_data = []
  value.each do |obj|
    hash_data << obj.to_hash
  end
  hash_data
end