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

  • SEARCH
  • Home
  • 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

Using Rails v2.1, lets say you have an action for a controller that is
I am using Jruby and rails 2.2.2. My problem is I have a migration
I am using ruby on rails with a MySQL backend. I have a table
I have been using ActiveResource in my Ruby on Rails applications for some time,
I have a normal Rails project (without Active Record) using CouchDB (couchrest_model) as a
I'm starting work on a project using Rails, but I'm waiting for the 3rd
I am working on a project using rails 2.1.1. With the new release of
I'm kinda new to using Rails, and an app I am working on is
I am currently trying to program my first ajax interface using Rails. The application
I've been reading some tutorials on how to get started using Rails 2.0. (Time

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.