module StiFriendly::ClassMethods

Public Instance Methods

inherited(base) click to toggle source
Calls superclass method
# File lib/sti_friendly.rb, line 9
def inherited(base)
  super
  base.send :include, Module.new { base.inheritance_column = :nil }
end