Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've done some reading about how to extend ActiveRecord:Base class so my models would have some special methods. What is the easy way to extend it (step by step tutorial). Thx!

share|improve this question
What kind of extensions? We really need more to go on. – jonnii Feb 24 '10 at 19:51
I would like to add some global methods to all my models. – xpepermint Feb 24 '10 at 20:09

6 Answers

up vote 136 down vote accepted

There are several approaches :

Using ActiveSupport::Concern (Preferred)

Read the ActiveSupport::Concern documentation for more details.

Create a file called active_record_extension.rb in the lib directory.

module ActiveRecordExtension

  extend ActiveSupport::Concern

  # add your instance methods here
  def foo
     "foo"
  end

  # add your static(class) methods here
  module ClassMethods
    def bar
      "bar"
    end
  end
end

# include the extension 
ActiveRecord::Base.send(:include, ActiveRecordExtension)

Create a file in the config/initializers directory called extensions.rb and add the following line to the file:

require "active_record_extension"

Inheritance

Refer to Toby's answer.

Monkey patching

Create a file in the config/initializers directory called active_record_monkey_patch.rb.

class ActiveRecord::Base     
  #instance method, E.g: Order.new.foo       
  def foo
   "foo"
  end

  #class method, E.g: Order.bar        
  def self.bar
    "bar"
  end
end

The famous quote about Regular expressions by Jamie Zawinski can be re-purposed to illustrate the problems associated with monkey-patching.

Some people, when confronted with a problem, think “I know, I'll use monkey patching.” Now they have two problems.

Monkey patching is easy and quick. But, the time and effort saved is always extracted back sometime in the future; with compound interest. These days I use this approach only for testing a solution in the rails console.

share|improve this answer
Hum... for second example when I run ./scripts/console I get an error "`include':TypeError: wrong argument type Class (expected Module)". – xpepermint Feb 24 '10 at 21:17
@xpepermint Sounds like you started it with class MyActiveRecordExtensions instead of module MyActiveRecordExtensions. – Jimmy Cuadra Feb 24 '10 at 23:59
No... I mad a copy&paste. Strange... – xpepermint Feb 25 '10 at 8:01
2  
You have to require the file at the end of environment.rb. I have added this extra step to my answer. – Harish Shetty Feb 25 '10 at 8:32

You can just extend the class and simply use inheritance.

class AbstractModel < ActiveRecord::Base  
  self.abstract_class = true
end

class Foo < AbstractModel
end

class Bar < AbstractModel
end
share|improve this answer
I like this idea because is a standard way of doing it but... I get an error Table 'moboolo_development.abstract_models' doesn't exist: SHOW FIELDS FROM abstract_models. Where should I put it? – xpepermint Feb 25 '10 at 7:59
8  
Add self.abstract_class = true to your AbstractModel. Rails will now recognize the model as an abstract model. – Harish Shetty Feb 25 '10 at 17:53
Good catch, cheers – Toby Hede Feb 25 '10 at 21:33
there must be something that you did not write :). It is not working for me. I created abstract.rb in models, added the code there... – xpepermint Feb 27 '10 at 12:18
1  
Ha... it works... It was a name who cosed problems. Abstract class must be renamed to X and it works. Thx. – xpepermint Feb 27 '10 at 17:05

You can also use ActiveSupport::Concern and be more Rails core idiomatic like:

module MyExtension
  extend ActiveSupport::Concern

  module InstanceMethods
    def foo
    end  
  end

  module ClassMethods
    def bar
    end
  end
end

ActiveRecord::Base.send(:include, MyExtension)

Then all your models will have the InstanceMethods and ClassMethods from your extension. Thus on a FooBar < ActiveRecord::Base you will have: FooBar.bar and FooBar#foo

http://api.rubyonrails.org/classes/ActiveSupport/Concern.html

share|improve this answer
Note that InstanceMethods is deprecated since Rails 3.2, just put your methods into the module body. – Daniel Rikowski Dec 12 '12 at 11:01

Step 1

module FooExtension
  def foo
    puts "bar :)"
  end
end
ActiveRecord::Base.send :include, FooExtension

Step 2

# Require the above file in an initializer (in config/initializers)
require 'lib/foo_extension.rb'

Step 3

There is no step 3 :)
share|improve this answer
1  
I guess step 2 must be placed into config/environment.rb. It's not working for me :(. Can you please write some more help? Thx. – xpepermint Feb 24 '10 at 20:22

Just to add to this topic, I spent a while working out how to test such extensions (I went down the ActiveSupport::Concern route.)

Here's how I set up a model for testing my extensions.

describe ModelExtensions do
  describe :some_method do
    it 'should return the value of foo' do
      ActiveRecord::Migration.create_table :test_models do |t|
        t.string :foo
      end

      test_model_class = Class.new(ActiveRecord::Base) do
        def self.name
          'TestModel'
        end

        attr_accessible :foo
      end

      model = test_model_class.new(:foo => 'bar')

      model.some_method.should == 'bar'
    end
  end
end
share|improve this answer

I have

ActiveRecord::Base.extend Foo::Bar

in an initializer

For a module like below

module Foo
  module Bar
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.