Class: ActiveFacts::Metamodel::Topic

Inherits:
Object
  • Object
show all
Defined in:
lib/activefacts/metamodel/metamodel.rb,
lib/activefacts/metamodel/extensions.rb

Instance Method Summary collapse

Instance Method Details

#precursorsObject



172
173
174
175
# File 'lib/activefacts/metamodel/extensions.rb', line 172

def precursors
  # Precursors of a topic are the topics of all precursors of items in this topic
  all_concept.map{|c| c.precursors }.flatten.uniq.map{|c| c.topic}.uniq-[self]
end