Method: DeployGate::Xcode::Ios.project_root_path
- Defined in:
- lib/deploygate/xcode/ios.rb
.project_root_path(path) ⇒ String
103 104 105 106 107 108 109 |
# File 'lib/deploygate/xcode/ios.rb', line 103 def project_root_path(path) result = path if workspace?(path) || project?(path) result = project_root_path(File.dirname(path)) end result end |