I have a tirable orgnizing my Models in a Sinatra project.

Let's say I have 2 models: Post and Comment, nn Post model, I have to call Comment model. And now I have <class:Post>': uninitialized constant Comment (NameError).

I know its an issue in ordering the requiring for the models, but what about if I have lots of models? What's the Rails way in requiring models, etc.?

link|improve this question

68% accept rate
Phrogz answer here might be of help to you: stackoverflow.com/questions/5015471/… – phoffer Jul 28 '11 at 7:54
feedback

3 Answers

The Rails way is based on a very nice Ruby feature: const_missing. You could write your const_missing method or looking around the web for a solution with const_missing and sinatra.

link|improve this answer
where to put the method? I need best solution for it! – amrnt Jul 20 '11 at 18:50
feedback

You should put all of your models in a folder, such as lib in your application, then you can add this to the top of your Sinatra app file:

$: << File.dirname(__FILE__) + "/lib" # Assuming app.rb is at the same level as lib

require 'post'
require 'comment'

You should organise your code so that you do not call other models until all model declarations are loaded.

link|improve this answer
What if i have a punch of models? the structure of my app is ["app.rb", "controllers/*", "models/*"] and all of this are in lib folder. and I require them in config.ru by Dir["lib/**/*"].each { |f| require f if File.extname(f) =~ /\.rb/ } – amrnt Jul 20 '11 at 19:24
Sure - it's just a bit magical. I prefer to have code that I and others can read and understand. "Where is 'Post' required? Search for it... hmmm..." – stef Jul 20 '11 at 19:33
Okay. In your code above, if I called Comment in Post model, will it raise an error? – amrnt Jul 20 '11 at 20:13
No, it should be fine, but you'd need to post your code to verify that. – stef Jul 20 '11 at 20:32
Sorry, but it doesn't work! – amrnt Jul 21 '11 at 14:05
show 4 more comments
feedback

no prob when I tried this

a Comment if it is in a method of Post shouldn't be actually evaluated there must be some circumstance triggering the NameError

don't call Post in the body of the class declaration load all the model files per the first commenter's suggestion

shouldnt be having the same reference troubles as Java per se in a dynamic lang like Ruby

link|improve this answer
See my model: gist.github.com/be46a7aa54d5b5454d1b – amrnt Jul 22 '11 at 17:26
feedback

Your Answer

 
or
required, but never shown

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