Tagged Questions
1
vote
1answer
192 views
Assigning a polymorphic acts_as_mappable model in the Rails console
I have a polymorphic Location model:
class Location < ActiveRecord::Base
acts_as_mappable
before_validation :geocode_address, :on => :create
belongs_to :locatable, :polymorphic => true
...