Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting uninitialized constant Project::Forum::Topic at

app/controllers/home_controller.rb:46:in `discussions'

I have code below and I am converting from rails 2.3.x to rails 3.2.11, I am thinking something wrong in routes setting.

Any Idea How can I fix?

models

class Project < ActiveRecord::Base
      # Relations under project model
      has_many :features, :dependent => :destroy
      has_many :forums, :class_name=>'Forum::Forum'
      has_many :topics, :class_name=>'Forum::Topic', :through=>:forums
class Forum::Forum < Feature
  # Relations under forum model
  has_many :topics, :class_name => 'Forum::Topic', :dependent => :destroy

class Feature < ActiveRecord::Base
  # Relations under feature model
  belongs_to :project

class Forum::Topic < ActiveRecord::Base
   # Relations under topic model
   belongs_to :forum, :foreign_key => :forum_id, :class_name => 'Forum::Forum', :include => :project

home_controller.rb

def discussions
  @project ||= Project.find_by_name 'help'
  @forums = @project.forums
  @topics = @project.topics.recent # HERE I AM GETTING ERRORS
end

routes.rb

scope :home, :controller => "home", :activity => 'read' do
 get :discussions, :path => '/forums', :service_type => 'public'
 get :forums, :action => "discussions"
end

errors

uninitialized constant Project::Forum::Topic
app/controllers/home_controller.rb:46:in `discussions'
share|improve this question
Could you please include which files these classes are defined within? I noticed you're also missing the class call from before the class names. Is that really how the code is? – Ryan Bigg Mar 7 at 23:08
@RyanBigg, Updated my question – Sonali Kapoor Mar 7 at 23:12

2 Answers

up vote 2 down vote accepted

I just answerd via rails forum, here again,

In your project model class, change below way

OLD: has_many :topics, :class_name=>'Forum::Topic', :through=>:forums

NEW: has_many :topics, :class_name=>'::Forum::Topic', :through=>:forums

it should work

share|improve this answer
thanks, this is work for me – Sonali Kapoor Mar 9 at 19:14

If you autoload that class (that is, you do not require its source file), the cause could be a bug of Ruby autoload having troubles to autoload constants nested 3 or more times.

At the moment I can't find my source of this info on the internet; however, I rembember that it should be resolved with Ruby 2.0, so you can fix it removing the files you need from autoload, adding a require 'project/forum/topic' where you need, or upgrading to Ruby 2.0.

share|improve this answer
I didn't catch you, I am using Rails 3.2.x – Sonali Kapoor Mar 8 at 0:46
Rails doesn't belongs to the problem I had, it was a Ruby issue; how did you call the files which define Project, Forum and Topic? which is the folder structure where they are? – ProGNOMmers Mar 8 at 8:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.