Performance: App folder organization
MEDIUM IMPACT
This affects page load speed and rendering by influencing how quickly the server can locate and serve code and assets.
app/
controllers/
users_controller.rb
products_controller.rb
models/
user.rb
product.rb
views/
users/
index.html.erb
products/
index.html.erb
helpers/
users_helper.rb
products_helper.rb
assets/
images/
stylesheets/
javascripts/
lib/
services/
payment_service.rb
concerns/
user_concern.rb
jobs/
email_job.rbapp/
controllers/
users_controller.rb
products_controller.rb
models/
user.rb
product.rb
views/
users/
index.html.erb
products/
index.html.erb
helpers/
users_helper.rb
products_helper.rb
assets/
images/
stylesheets/
javascripts/
lib/
custom_code.rb
extra_code.rb| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Disorganized folders with mixed code | N/A | N/A | N/A | [X] Bad |
| Organized folders following Rails conventions | N/A | N/A | N/A | [OK] Good |