Class: Xcodeproj::Project::Object::PBXShellScriptBuildPhase

Inherits:
PBXBuildPhase show all
Defined in:
lib/xcodeproj/project/object/build_phase.rb

Instance Attribute Summary

Attributes inherited from AbstractPBXObject

#attributes, #project, #uuid

Instance Method Summary collapse

Methods inherited from PBXBuildPhase

#<<, #files

Methods inherited from AbstractPBXObject

#<=>, #==, attribute, create_reflection, #destroy, has_many, has_one, #inspect, isa, #list_by_class, #matches_attributes?, reflection, reflections

Constructor Details

#initializePBXShellScriptBuildPhase

Returns a new instance of PBXShellScriptBuildPhase.



76
77
78
79
80
81
82
83
84
# File 'lib/xcodeproj/project/object/build_phase.rb', line 76

def initialize(*)
  super
  self.files        ||= []
  self.input_paths  ||= []
  self.output_paths ||= []

  self.shell_path   ||= '/bin/sh'
  self.shell_script ||= ''
end