Module: RailsExtensions::HabtmList

Defined in:
lib/webpulser-habtm_list.rb

Defined Under Namespace

Modules: AssociationListMethods, ClassMethods

Class Method Summary collapse

Class Method Details

.append_features(base) ⇒ Object

:nodoc:



4
5
6
7
8
9
10
11
12
# File 'lib/webpulser-habtm_list.rb', line 4

def self.append_features(base) #:nodoc:
  super
  base.extend(ClassMethods)
  base.class_eval do
    class << self
      alias_method_chain :has_and_belongs_to_many, :list_handling
    end
  end
end