Method: Facebooker::Parser.array_of_hashes

Defined in:
lib/facebooker/parser.rb

.array_of_hashes(response_element, element_name) ⇒ Object



60
61
62
63
64
# File 'lib/facebooker/parser.rb', line 60

def self.array_of_hashes(response_element, element_name)
  array_of(response_element, element_name) do |element|
    hashinate(element)
  end
end