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

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

Instance Method Summary collapse

Instance Method Details

#fallback_descendantObject



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

def fallback_descendant
  self
end

#kindObject



37
38
39
# File 'lib/bsm/model/sti_convertable.rb', line 37

def kind
  name.demodulize.underscore
end

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

@Override: Allow to specify a kind



19
20
21
22
23
24
25
26
27
# File 'lib/bsm/model/sti_convertable.rb', line 19

def new(attributes=nil, *args, &block)
  kind = attributes.delete(:kind) { attributes.delete('kind') } if attributes.respond_to?(:delete)
  return super if real_type?

  klass = real_descendants.find {|k| k.kind == kind } || fallback_descendant
  return super if klass == self

  Bsm::Model::StiConvertable.scoping(klass, current_scope) { klass.new(attributes, *args, &block) }
end

#real_descendantsObject



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

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