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!
|
|
There are several approaches : Using ActiveSupport::Concern (Preferred)Read the ActiveSupport::Concern documentation for more details. Create a file called
Create a file in the
InheritanceRefer to Toby's answer. Monkey patchingCreate a file in the
The famous quote about Regular expressions by Jamie Zawinski can be re-purposed to illustrate the problems associated with monkey-patching.
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. |
|||||||||||
|
|
You can just extend the class and simply use inheritance.
|
|||||||||||||||
|
|
You can also use
Then all your models will have the http://api.rubyonrails.org/classes/ActiveSupport/Concern.html |
|||
|
|
Step 1
Step 2
Step 3
|
|||||
|
|
Just to add to this topic, I spent a while working out how to test such extensions (I went down the Here's how I set up a model for testing my extensions.
|
|||
|
|
|
I have
in an initializer For a module like below
|
|||
|
|