Method: Xcode::Group#groups
- Defined in:
- lib/xcode/group.rb
#groups ⇒ Array
Returns the sub-groups contained within this group.
52 53 54 55 56 57 |
# File 'lib/xcode/group.rb', line 52 def groups children.find_all {|child| child.is_a?(Group) }.map do |group| group.supergroup = self group end end |