Class: Xcodeproj::Project::Object::PBXShellScriptBuildPhase
- Inherits:
-
PBXBuildPhase
- Object
- AbstractPBXObject
- PBXBuildPhase
- Xcodeproj::Project::Object::PBXShellScriptBuildPhase
- Defined in:
- lib/xcodeproj/project/object/build_phase.rb
Instance Attribute Summary
Attributes inherited from AbstractPBXObject
Instance Method Summary collapse
-
#initialize ⇒ PBXShellScriptBuildPhase
constructor
A new instance of PBXShellScriptBuildPhase.
Methods inherited from PBXBuildPhase
Methods inherited from AbstractPBXObject
#<=>, #==, attribute, create_reflection, #destroy, has_many, has_one, #inspect, isa, #list_by_class, #matches_attributes?, reflection, reflections
Constructor Details
#initialize ⇒ PBXShellScriptBuildPhase
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 |