Method: XcodeProject::FileNode#parent
- Defined in:
- lib/xcodeproject/file_node.rb
#parent ⇒ Object
48 49 50 51 52 |
# File 'lib/xcodeproject/file_node.rb', line 48 def parent root.select_objects do |uuid, data| (data['children'].include?(self.uuid) if data['isa'] == 'PBXGroup') ? true : false end.first end |