Class: PBXProject::PBXTypes::PBXShellScriptBuildPhase

Inherits:
ISAType
  • Object
show all
Defined in:
lib/pbxproject/pbxtypes.rb

Instance Attribute Summary

Attributes inherited from ISAType

#comment, #guid, #isa

Instance Method Summary collapse

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.



232
233
234
235
236
237
238
239
240
241
242
# File 'lib/pbxproject/pbxtypes.rb', line 232

def initialize args = {}
  super

  # Defaults
  @comment = "ShellScript"
  @buildActionMask = basic_value(2147483647)
  @files = []
  @inputPaths = []
  @outputPaths = []
  @runOnlyForDeploymentPostprocessing = basic_value(0)
end