require_relative "zbozi.rb" class Module_obchodproturisty < Format::Zbozi def initialize super @url = 'http://www.obchodproturisty.cz/xml/zbozi-cs-czk.xml' end def parse_img(xml) xml.match(/(.*?)<\/IMGURL>/m)[1] rescue ''; end def parse_description(xml) xml.match(/(.*?)<\/DESCRIPTION>/m)[1] rescue ''; end end