module HasComments def self.included(base) base.extend ClassMethods end module ClassMethods def has_comments puts "hello" end end end class ActiveRecord::Base include HasComments end