More than 3 hours I am trying to solve pretty easy error (on the first glance):
undefined method `empty?' for nil:NilClass
but still no success.
I have the DB table products, which contains the columns category_id and manufacturer_id.
Associations:
class Product < ActiveRecord::Base
belongs_to :manufacturer
belongs_to :category
...
end
class Category < ActiveRecord::Base # the same for Manufacturer
has_ancestry
has_many :products
end
Trying to grab some data:
Product.where('category_id IS NOT NULL AND manufacturer_id IS NOT NULL').each do |product|
...
puts product.manufacturer.name # here's the error
puts product.category.name # here's the error
...
end
I fetched all rows, where is not NIL value in the columns manufacturer_id and category_id... so how can I get this error?
Also, I've tried:
...
puts product.manufacturer.name unless product.manufacturer_id.nil?
puts product.category.name unless product.category_id.nil?
...
What am I doing wrong?
puts product.manufacturer.nameor this one:puts product.category.name, I mentioned only the problematic ones. – user984621 Nov 14 '12 at 18:40puts product.manufacturer.nameor here:puts product.category.name– user984621 Nov 14 '12 at 18:47