2
votes
1answer
46 views

How to set model's load order to avoid relation errors?

I have a folder models for model files. Each file contain one model. There are a lot of relations between models (hasMany, belongsTo). If I want to set hasMany relation then I need to have child model ...
7
votes
1answer
680 views

Rails + Delayed Job: Where is the correct place to store custom job classes?

I'm new to delayed_job and i'm starting to write my own "custom jobs". Each custom job is basically just a regular ruby class but i'm not sure where these custom job classes are normally stored ...
1
vote
2answers
512 views

rails app folder directory structure

Here is a app contorller directory from Rails project , doing a self study for rails, but from what I understand if I create a directory in the app folder then I have to do the complete the routes ...
1
vote
3answers
97 views

How do I structure directories for a repo that holds a rails app and other code separate from the website?

If I'm creating a rails app and will also be writing other code for the project (think tools and background processes that will be run separately from the website), how should I structure the ...
0
votes
1answer
1k views

Recursively including all model subdirectories

How do you load all directories recursively in the models and lib directories? In application.rb, I have the lines: config.autoload_paths += Dir[Rails.root.join('app', 'models', '{**}')] ...
3
votes
2answers
238 views

Where to Rake Task specific classes live? (Rails 3)

I have a couple classes that are used only by a rake task. I realize that rake tasks normally live @ lib/tasks/whatever.rake but where should i place the supporting classes? Thank you!
2
votes
2answers
56 views

Why is stylesheets and scripts separate from app in rails directory structure

I never understood why the stylesheets and scripts are outside the /app folder in ruby on rails. Is there benefits of housing them in the /public folder away from the /app? Thank! Matt
17
votes
1answer
7k views

RAILS_ROOT require?

I'm trying to access the RAILS_ROOT constant in a file residing in the /lib directory, but I'm not able to (uninitialized constant error). Is there something that I need to require to be able to do ...
0
votes
1answer
2k views

Rails: Single Table Inheritance and models subdirectories

I have a card-game application which makes use of Single Table Inheritance. I have a class Card, and a database table cards with column type, and a number of subclasses of Card (including class Foo ...
2
votes
3answers
80 views

Rails: Where to place plugin files

I am relatively new to Rails and recently found a couple of useful gems like authlogic that will help in getting the project up and about really fast. However, I have been wondering where to place the ...
0
votes
2answers
502 views

What should my directory structure look like for user assets in a web application?

In my web application, each user will have a logo. I am pretty sure each user will also have a photo gallery in the future. What is the best way to set up a directory structure for managing user ...
89
votes
3answers
16k views

OO Design in Rails: Where to put stuff

I'm really enjoying Rails (even though I'm generally RESTless), and I enjoy Ruby being very OO. Still, the tendency to make huge ActiveRecord subclasses and huge controllers is quite natural (even if ...