Displaying 1 result from an estimated 1 matches for "faq_categori".
Did you mean:
faq_categories
2006 Jun 23
1
Rate is not a class
Here''s one I haven''t seen before I have a model "section.rb" as follows:
class Section < ActiveRecord::Base
###Lot of common stuff
end
class Normal < Section
end
class Faq < Section
has_many :faq_categories, :order => :position
end
class Rate < Section
has_many :rate_tables
end
Now I''ve just added the Rates class and it works just dandy (new, save,
destroy, etc.) in the console. The problem is using in my app. I can
start webrick, and make 2-3 requests before getting the follo...