I have a couple of functions in my modules which are identical. I would
like to move them into a separate file and have them available in all
modules. For example, the controllers already have one, application.rb.
Do modules have something similar ? If not, what would be the best way
to do this ?
This should allow you to get the methods where you need them.
Or one step further:
class ActiveRecord::Base
include ModelHelpers
end
you can just open the big daddy yourself and mess with it if the helpers
are going to be used by most of your models anyways, this will help you
keep your individual model code dryer and give you something to talk
about at your next party.
# /lib/extensions/active_record_extender.rb
module Extensions
module ActiveRecordExtender
def shared_method
# this method will be in every single model
end
end
end
# /app/models/example.rb
class Example < AR:Base
def some_method
shared_method # call to method from module
end
end
# /lib/extensions/active_record_extender.rb
module Extensions
module ActiveRecordExtender
def shared_method
# this method will be in every single model
end
end
end
# /app/models/example.rb
class Example < AR:Base
def some_method
shared_method # call to method from module
end
end
Doesn't work for me. Mongrel chokes on startup:
./lib/extensions/active_record_extender.rb:1: Extensions is not a
module (TypeError)