<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,3 +2,30 @@
 
 Ruby gem to access Weather Channel (weather.com) XML API.
 
+This gems lets you access to the search and get current conditions features. Forecast it's not implemented yet.
+
+In order to use the API you will need first to get your partner_id and licence key from weather.com at this address:
+http://www.weather.com/services/xmloap.html
+
+Sign up, enter all your data and you'll get an email with the partner_id, licence key and a link to download the SDK info.
+If you need to read the license agreement and the API doc you can do it here:
+http://download.weather.com/web/xml/sdk.zip
+
+== Example
+
+  require 'rubygems'
+  require 'r_weather'
+
+  RWeather.partner_id = &quot;xxxxxxxxxx&quot;
+  RWeather.key = &quot;yyyyyyyyyyyyyyyy&quot;
+
+  locations = RWeather.search('tucuman') # that's where I'm from :)
+  unless locations.empty?
+    locations.each_with_index do |location, i|
+      puts &quot;#{i}) #{location.id} - #{location.name}&quot;
+    end
+    cc = RWeather.current_conditions(locations.first.id)
+    puts &quot;Current conditions: &quot;
+    puts &quot;  Temperature: #{cc.tmp}&quot;
+    puts &quot;  Feels like:  #{cc.flik}&quot;
+  end</diff>
      <filename>README</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0637d99f5fc0f8c60364302a5d7650519bd11b45</id>
    </parent>
  </parents>
  <author>
    <name>Carlos Kozuszko</name>
    <email>ckozus@gmail.com</email>
  </author>
  <url>http://github.com/ckozus/rweather/commit/b0c9740ee6c1af06f7f1bcec6fd68c2cb4276e0d</url>
  <id>b0c9740ee6c1af06f7f1bcec6fd68c2cb4276e0d</id>
  <committed-date>2008-09-06T14:16:40-07:00</committed-date>
  <authored-date>2008-09-06T14:16:40-07:00</authored-date>
  <message>Adding documentation and a little example.</message>
  <tree>b29eaa3458d170ead4966800ea584ae18c2abad7</tree>
  <committer>
    <name>Carlos Kozuszko</name>
    <email>ckozus@gmail.com</email>
  </committer>
</commit>
