Module: MongoMapper::Plugins::ActsAsTree::InstanceMethods
- Defined in:
- lib/mongo_mapper/plugins/acts_as_tree.rb
Overview
Instance Method Summary collapse
Instance Method Details
#self_and_siblings ⇒ Object
65 66 67 |
# File 'lib/mongo_mapper/plugins/acts_as_tree.rb', line 65 def self_and_siblings parent? ? parent.children : self.class.roots end |
#siblings ⇒ Object
61 62 63 |
# File 'lib/mongo_mapper/plugins/acts_as_tree.rb', line 61 def siblings self_and_siblings - [self] end |