Method: Xcode::Buildspec::TaskBuilder#deploy

Defined in:
lib/xcode/buildspec.rb

#deploy(type, args = {}) ⇒ Object

Set a deployment target.

This will configure a set of deploy: targets that will send the .ipa to various services (testflight, s3, ftp, sftp, etc)

Parameters:

  • the

    deployment type (testflight, etc)

  • arguments

    to pass to the deployment type



170
171
172
# File 'lib/xcode/buildspec.rb', line 170

def deploy type, args = {}
  @deployments << {:type => type, :args => args}
end