# encoding: utf-8 module BikePOA class Client def initialize @http_client = HttpClient.new @map_parser = MapParser.new end def stations map_page = @http_client.fetch @map_parser.parse(map_page).map do |station_data| Station.new(station_data) end end end end