Module: Bsm::Model::StiConvertable::ClassMethods

Defined in:
lib/bsm/model/sti_convertable.rb

Instance Method Summary collapse

Instance Method Details

#fallback_descendantObject



30
31
32
# File 'lib/bsm/model/sti_convertable.rb', line 30

def fallback_descendant
  self
end

#kindObject



34
35
36
# File 'lib/bsm/model/sti_convertable.rb', line 34

def kind
  name.demodulize.underscore
end

#new(attributes = nil, *args, &block) ⇒ Object

@Override: Allow to specify a kind



16
17
18
19
20
21
22
23
24
# File 'lib/bsm/model/sti_convertable.rb', line 16

def new(attributes = nil, *args, &block)
  kind  = (attributes = attributes.with_indifferent_access).delete(:kind) if attributes.is_a?(Hash)
  klass = real_descendants.find {|k| k.kind == kind } || fallback_descendant
  return super if klass == self

  klass.with_scope(respond_to?(:current_scope) ? current_scope : current_scoped_methods) do # AR 3.0 compatibility
    klass.new(attributes, *args, &block)
  end
end

#real_descendantsObject



26
27
28
# File 'lib/bsm/model/sti_convertable.rb', line 26

def real_descendants
  descendants.select(&:real_type?)
end