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 6470939
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:10:04+00:00 2026-05-25T06:10:04+00:00

What is the recommended way to wrap an ActiveRecord accessor? Given something like class

  • 0

What is the recommended way to wrap an ActiveRecord accessor?

Given something like

class Post < ActiveRecord::Base
  has_many :comments
end

class Comment < ActiveRecord::Base
  belongs_to :post
end

I would like to be able to make it that, for example, @post.comments returns randomly sorted comments.

Of course I could create another method, like random_comments, but I would like to know if there’s a less error prone way (I don’t want to have to remember to call the random_comments method).

Calling super doesn’t work, as the comments method is created reflectively on the Post class and not inherited.

So how would you do it?

  • 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-25T06:10:04+00:00Added an answer on May 25, 2026 at 6:10 am

    Hope this helps..

    class Post < ActiveRecord::Base
      has_many :comments
    
      def comments_with_randomness
        comments_without_randomness.shuffle
      end
    
      alias_method_chain :comments, :randomness
    end
    

    Now, calling @post.comments should return comments in random order. But, remember, it would be an array and not an active relation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a data structure (e.g. a hash of hashes), what's the clean/recommended way to
What is the recommended way to locate a class in a large group of
What's the recommended way of getting a generic view class from the url name?
What is the recommended way to embed PDF in HTML? iFrame? Object? Embed? What
Is there a recommended way to bounce an asp.net application besides touching web.config from
Which is the preferred/recommended way of handling events in .NET: this.Load += new EventHandler(Form1_Load);
Very similar to this question , except for Java. What is the recommended way
What is the most recommended/best way to stop multiple instances of a setTimeout function
Any recommended crypto libraries for Python. I know I've asked something similar in x509
What's the best way to wrap non-thread-safe code in the .net framework? I've got

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.