Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6161759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:31:56+00:00 2026-05-23T21:31:56+00:00

Im using Rails 2.3.5 and I have a model, let’s call it Post. I

  • 0

Im using Rails 2.3.5 and I have a model, let’s call it Post. I used named scopes to apply different kinds of sorts on Post. For example, in the Post model I have possibility to rank posts by its scores:

named_scope :order_by_acception_rate_desc,
Proc.new { |limit| { :limit => limit, :order => "acception_rate desc" } }

In the Post Controller I have:

def best
    @best_posts = Post.order_by_acception_rate_desc(10)
end

In the view I just render this collection @best_posts:

<%= render :partial => "post", :collection => @best_posts

Currently my application is working like that, but actually I do not need to have the method “best” in the Controller, and I could move it to the Model Post doing like:

def self.best
    self.order_by_acception_rate_desc(10)
end

and then in the view I would render the collection like:

<%= render :partial => "post", :collection => Post.best

I do not know which approach is better, but using the ranking methods in the Model, I could avoid to create routes for each one of ranking methods. What approach is better, is there any better approach than these?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T21:31:58+00:00Added an answer on May 23, 2026 at 9:31 pm

    with according to Rails conventions the logic should be separated,

    1. controllers handle permissions, auth/authorization, assign instance/class variables
    2. helpers handle html logic what to show/hide to user
    3. views should not provide any logic, permissions check. think about it from designer’s point of view
    4. models handle data collection/manipulation over ORM

    I’d like to ask you to try:

    #helper
    def self.best(limit)
      all(:limit => limit, :order => "acception_rate desc")
    end
    
    #controller
    @best_posts = Post.best
    
    #view
    <%= render :partial => "post", :collection => @best_posts %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using rails beta 3 and I have a erb page named index.html.erb
I am using Rails v2.3 If I have a model : class car <
Note: Using Rails 3.1 and current delayed_job gem. I have a User model that
I'm using Rails 3 with Devise for user auth. Let's say I have a
I have a model Post which belongs_to one Section . There are two different
Let's assume I have two Rails ActiveRecord models, CarType (make/model of car) and Car
I'm using Rails 3.0 and the acts_as_taggable_on gem. I have a Candy model and
Using: Rails 3.1.1 I have a controller/model/view called Category that is built up on
I am using Rails v2.3.2 . I have a model called UsersCar : class
Using Rails v2.1, lets say you have an action for a controller that is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.