I've just finished watching RailsCasts #273 on the Geocoder gem. It looks like a really powerful/flexible gem and I want to integrate it into my app but I'm a little bit confused about reverse geocoding. I know that you can provide something like:
class Skatepark < ActiveRecord::Base
reverse_geocoded_by :latitude, :longitude
after_validation :fetch_address
...
end
This will reverse geocode the coordinates and then populate :address w/ the formatted_address returned by the geocoder. The problem is that I don't have (or want) an :address attribute. I have :street, :locality, :region, :country, and :postal_code attributes that need to be populated w/ the corresponding values returned by Geocoder. How do I go about doing this using the Geocoder gem?