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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T20:03:56+00:00 2026-05-30T20:03:56+00:00

In my Rails app, in app/models/ , I have a file named array.rb which

  • 0

In my Rails app, in app/models/, I have a file named array.rb which contains the following code :

class Array
  def sum_f
    #my code
  end
end

When I run the console, Array.new.respond_to?(:sum_f) returns false whereas the test console returns true (and the method works nicely).

I’ve figured out that setting config.cache_classes to true in development.rb fixes this but my guess is that it is not the correct solution.

Any ideas why my modifications to the Array class are being ignored in the development ENV ?

Cheers

  • 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-30T20:03:57+00:00Added an answer on May 30, 2026 at 8:03 pm

    Rails, in development, lazily loads files. Which means unless you explicitely require it, the file isn’t loaded until you require it’s class.

    What I do is that I create an initializer, like config/initializers/core_ext.rb
    Which includes all my application’s core extensions.

    Dir[Rails.root.join('lib', 'core_ext', '**', '*.rb)].each {|f| require f}
    

    Then, add all your core extensions in the lib/core_ext (like lib/core_ext/array for your example) directory and they’ll be automatically loaded when you start the application.
    This also means that every time you change a core extension file, you need to restart your rails server.

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

Sidebar

Related Questions

In my Rails 2.3.2 app I have 2 models: class Post has_many :approved_comments, :class_name
In my rails app, have a tree-like model like this: class File belongs_to :parent,
I have a Rails app with some basic models. The website displays data retrieved
I have a couple of models in a Rails app. Let's say it's Products
I have a new rails app which needs to access data from a legacy
I currently have a Rails 3.0.10 app and I made two models with simple
I'm using active admin for my rails app. I have a customer model which
I have 2 models in my rails app, one with an UUID primary key
I have several active record models in a rails app and I would like
For a Rails 3.0 Todo app, I have a Tasks model with a Status

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.