Method: XcodeProject::FileNode#group_path
- Defined in:
- lib/xcodeproject/file_node.rb
#group_path ⇒ Object
54 55 56 57 58 59 60 61 62 |
# File 'lib/xcodeproject/file_node.rb', line 54 def group_path obj = self res = '' begin pn = obj.name ? obj.name : '' res = Pathname.new(pn).join(res) end while obj = obj.parent; res.cleanpath end |