using the explanation here https://github.com/alexreisner/geocoder , I started setting up a geocoder for rails 3. I have this in my picture model
class Picture < ActiveRecord::Base
include Geocoder::Model::Mongoid
field :coordinates, :type => Array
field :address
geocoded_by :address
after_validation :geocode
reverse_geocoded_by :coordinates
after_validation :reverse_geocode
the page didnt say this but i added mongoid in my gem file. I ran into trouble for not having a mongoid.yml file so I put one in config, copying a pasting this persons demo (Im not sure if there is another way you are supposed to set up mongo) https://github.com/joshsoftware/mongo_geo_demo/blob/master/config/mongoid.yml when I run rake geocode:all CLASS=Picture , why does it give me this error
rake aborted!
undefined method `field' for #
Tasks: TOP => geocode:all