Hi,
I am trying to figure out why I am receiving the following error. I am
following an Apple Developers Rail Application tutorial.
event.expenses.create(:vendor => vendor1, :amount =>75.00)
NameError: undefined local variable or method `vendor1' for
#<Object:0x389a0>
from (irb):2
Here is what I have for the models
class Event < ActiveRecord::Base
validates_presence_of :name
validates_numericality_of :budget, :greater_than => 0.0
has_many :expenses
has_many :vendors, :through => :expenses
end