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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T15:07:04+00:00 2026-05-20T15:07:04+00:00

We have a model association that looks something like this: class Example < ActiveRecord::Base

  • 0

We have a model association that looks something like this:

class Example < ActiveRecord::Base
  has_many :others, :order => 'others.rank'
end

The rank column is an integer type. The details of these particular models are not really important though as we have found the same problem with other has_many associations between other models.

We have also added to the Enumerable module:

module Enumerable
  def method_missing(name)
    super unless name.to_s[0..7] == 'collect_'
    method = name.to_s[8..-1]
    collect{|element| element.send(method)}
  end
end

This adds a collect_id method that we can use to get an array of record ids from an array of ActiveRecord objects.

So if we use a normal ActiveRecord find :all, we get a nice array which we can then use collect_id on but if we use Example.others.collect_id, we get

NoMethodError: undefined method `collect_id' for #<Class:0x2aaaac0060a0>

Example.others.class returns “Array” so is it lying or confused?

Our solution thus far has been to use it this way:

Example.others.to_a.collect_id 

This works but this seems a bit strange. Why would you have to do that?

We are on Ruby 1.8.7 and Rails 2.3.4

  • 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-20T15:07:05+00:00Added an answer on May 20, 2026 at 3:07 pm

    Model associations are proxies, not just simple Arrays.

    Instead of example.others.all.collect_id and your patch, I suggest you use example.others.all.map(&:id) which is the standard Rails and Ruby >=1.8.7 way to collect a single attribute.

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

Sidebar

Related Questions

Let's say I have a model like this class Foo(db.Model): id = db.StringProperty() bar
I have a model, Thing, that has a has_many with ThingPhoto, using Paperclip to
I have a polymorphic association in a Ruby on Rails model. In the migration,
Let's say I have this model named Product with a field named brand .
Let's assume I have a model called product. Let's assume that product has three
I have an ActiveRecord model Language , with columns id and short_code (there are
I have a model representing a Content item that contains some images. The number
I have a model being populated by my data layer and then I have
I have some model objects I'm using in my Java client application. Later these
I have a model Question with a field called userid , before one ask

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.