<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>MIT-LICENSE</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -10,6 +10,18 @@ Set the default geocoder in the bottom of your environment.rb file.
 Example: 
 Geocode.geocoder = Yahoo::Geocode.new 'your_api_key'
 
+Then, in each model you want to make geocodable, add &quot;acts_as_geocodable&quot;. For example, 
+
+class Stores &lt; ActiveRecord::Base
+	acts_as_geocodable
+end
+
+Alternatively, you if you use the address methods below (or provide setters), you can automatically update the address fields if the geocoding process returns more accurate data
+
+class Stores &lt; ActiveRecord::Base
+	acts_as_geocodable :normalize_address =&gt; true
+end
+
 Each Model that acts_as_geocodable needs to have a some sort of address.  This is always referenced via the provided full_address method.  You can use any field names for you addresses, but if they are different than mine (street, city, state, zip), you will have to provide your own full_address method that concatenates them together.
 
 def full_address</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,26 @@
+# While modified by Daniel Morrison, this file mostly written by Rick Olson.  
+# 
+# Copyright (c) 2006 Rick Olson
+# 
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# &quot;Software&quot;), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+# 
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+# 
+# THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+# 
 $:.unshift(File.dirname(__FILE__) + '/../lib')
 
 require 'test/unit'</diff>
      <filename>test/test_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3345500da6cb16d6c19d43f2fd13a69472a2ed13</id>
    </parent>
  </parents>
  <author>
    <name>Daniel Morrison</name>
    <email>daniel@collectiveidea.com</email>
  </author>
  <url>http://github.com/collectiveidea/acts_as_geocodable/commit/d9e33a35e35dfc95ecfab23689181caebaa90e8c</url>
  <id>d9e33a35e35dfc95ecfab23689181caebaa90e8c</id>
  <committed-date>2006-10-01T22:08:33-07:00</committed-date>
  <authored-date>2006-10-01T22:08:33-07:00</authored-date>
  <message>Updated README and added license information</message>
  <tree>7fe673fa16008ef51d0f9cb551324689d62b61ed</tree>
  <committer>
    <name>Daniel Morrison</name>
    <email>daniel@collectiveidea.com</email>
  </committer>
</commit>
