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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:44:28+00:00 2026-06-01T22:44:28+00:00

I am using a mixin to add some functionality to my model (Person). In

  • 0

I am using a mixin to add some functionality to my model (Person). In the mixin I need some initializations to be done so I am trying to use the “after_initialize” callback macro to invoke an initialization method. The model (Person) is only a base class for some other models.

The problem I am having is that it gets never called. I tried to debug it but the breakpoint never got hit. Also logging gives me no output.

I couldn`t find any help (as this construct should be working in Rails 3 according to the Api docs and some posts here).

/lib/mymodule.rb

module MyModule
    after_initialize :generate_ids

    def generate_ids
      logger.info "invoked" #never hit
    end
end

/models/person.rb

require "mymodule"

class Person < ActiveRecord::Base
    include MyModule
end

/models/customer.rb

class Customer < Person
  # nothing so far
end

*/controllers/customers_controller.rb (action => new)*

# GET /customers/new
# GET /customers/new.json
def new
  @person = Customer.new

  respond_to do |format|
    format.html # new.html.erb
    format.json { render json: @customer }
  end
end

Please be indulgent to me as I am a “newbie” to RoR.

Thank you very much !

Best regards,
Thomas

UPDATE

After restarting the local app server it gives me the following exception:

ActionController::RoutingError (undefined method `after_initialize’ for SequentialRecord:Module):

I assume this callback can`t be used in mixins ?

  • 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-06-01T22:44:29+00:00Added an answer on June 1, 2026 at 10:44 pm

    Try something like that (not tested).

    module MyModule
      def self.included(base)
        base.after_initialize :generate_ids
      end
    
      def generate_ids
        logger.info "invoked" #never hit
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hi I'm trying use a mixin to define some method using define_method. I would
I am using LESS and im trying for a type of mixin. I have
I'm using a mutable HashMap with the MultiMap mixin and noticed that the map.add
If I'm using compass for CSS and use a function or mixin like: @include
We're using Jon Skeet's proto-csharp-port, and I'm running into some difficulties when mixing it
I sometimes use braces to isolate a block of code to avoid using by
I'm trying to create an instance of a trait using this method val inst
I'm using a dotLess 'mixin' like this: .base-button-style { ... } .specific-button-style { .base-button-style;
I have this problem where I need to add a red asterisk beside a
I am trying to convert my program from using Data.Array to Data.Array.Unboxed. As a

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.