Class: PBXProject::PBXTypes::PBXShellScriptBuildPhase
- Defined in:
- lib/pbxproject/pbxtypes.rb
Instance Attribute Summary
Attributes inherited from ISAType
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ PBXShellScriptBuildPhase
constructor
A new instance of PBXShellScriptBuildPhase.
Methods inherited from ISAType
#_pbx_format, #_pbx_indent, #_pbx_newline, #basic_value, has_fields, has_format, #hashify, #to_pbx
Constructor Details
#initialize(args = {}) ⇒ PBXShellScriptBuildPhase
Returns a new instance of PBXShellScriptBuildPhase.
292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/pbxproject/pbxtypes.rb', line 292 def initialize args = {} super # Defaults @comment = "ShellScript" @buildActionMask = basic_value(2147483647) @files = [] @inputPaths = [] @outputPaths = [] @runOnlyForDeploymentPostprocessing = basic_value(0) end |