Práctica: Servicio para Abreviar URLs Teniendo en Cuenta el País de Visita

Añádale a la práctica 48.1 la funcionalidad de mostrar el número de visitas y el número de visitas por país.

Puede usar para ello la API de http://www.hostip.info/:

  after :create, :set_country
  
  def set_country
    xml = RestClient.get "http://api.hostip.info/get_xml.php?ip=#{ip}"  
    self.country = XmlSimple.xml_in(xml.to_s, { 'ForceArray' => false })['featureMember']['Hostip']['countryAbbrev']
    self.save
  end

Casiano Rodriguez León 2015-01-07