Module: FluentCommandBuilder::XCodeBuild::V43

Defined in:
lib/fluent_command_builder/command_builders/xcodebuild_43.rb

Defined Under Namespace

Classes: BuildProject, BuildWorkspace, Version, XCodeBuild

Constant Summary collapse

COMMAND_NAME =
'xcodebuild'

Instance Method Summary collapse

Instance Method Details

#xcodebuild {|builder| ... } ⇒ Object

Yields:

  • (builder)


127
128
129
130
131
132
# File 'lib/fluent_command_builder/command_builders/xcodebuild_43.rb', line 127

def xcodebuild
  builder = CommandBuilder.new COMMAND_NAME
  command = XCodeBuild.new builder
  yield builder if block_given?
  command
end