Module: Fandango::MoviesNear::Parser

Defined in:
lib/fandango/api/movies_near.rb

Class Method Summary collapse

Class Method Details

.call(xml) ⇒ Object



24
25
26
27
28
29
# File 'lib/fandango/api/movies_near.rb', line 24

def call(xml)
  doc = Nokogiri.XML(xml)
  doc.css('item').map do |item_node|
    Theater.parse(item_node)
  end
end