I have a model with a belongs_to association:
belongs_to
class Car < ActiveRecord::Base belongs_to :vendor end
So I can call c
c
In Rails 4, you should simply be able to add alias_attribute :company, :vendor to your model.
alias_attribute :company, :vendor