Method: Xcode::BuildPhase#build_files
- Defined in:
- lib/xcode/build_phase.rb
#build_files ⇒ Array<FileReference>
Return the files that are referenced by the build files. This traverses the level of indirection to make it easier to get to the FileReference.
Another method, file, exists which will return the BuildFile references.
91 92 93 |
# File 'lib/xcode/build_phase.rb', line 91 def build_files files.map {|file| file.file_ref } end |