Class: Phase::Config::IPA

Inherits:
Object
  • Object
show all
Defined in:
lib/phase/config/ipa.rb

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Returns the bucket for storing uploaded files.

Examples:

Sample setting

config.ipa.bucket_name = "mycompany-enterprise-builds"

Returns:

  • (String)

    the bucket for storing uploaded files



20
21
22
# File 'lib/phase/config/ipa.rb', line 20

def bucket_name
  @bucket_name
end

#bundle_id_prefixString

Returns the bundle ID prefix.

Examples:

Sample setting

config.ipa.bundle_id_prefix = "com.mycompany"

Returns:

  • (String)

    the bundle ID prefix



8
9
10
# File 'lib/phase/config/ipa.rb', line 8

def bundle_id_prefix
  @bundle_id_prefix
end

#company_nameString

Returns the company name to provide with enterprise app installs.

Examples:

Sample setting

config.ipa.company_name = "ACME Corp"

Returns:

  • (String)

    the company name to provide with enterprise app installs



26
27
28
# File 'lib/phase/config/ipa.rb', line 26

def company_name
  @company_name
end

#directory_prefixString

Returns the directory keypath (e.g. ‘prefix’ at S3) for storing uploaded files.

Examples:

Sample setting

config.ipa.directory_prefix = "somedir/nesteddir"

Returns:

  • (String)

    the directory keypath (e.g. ‘prefix’ at S3) for storing uploaded files



14
15
16
# File 'lib/phase/config/ipa.rb', line 14

def directory_prefix
  @directory_prefix
end

#full_image_urlString

Returns the URL of a full-size (512px x 512px) app icon PNG.

Examples:

Sample setting

config.ipa.full_image_url = "https://....png"

Returns:

  • (String)

    the URL of a full-size (512px x 512px) app icon PNG



32
33
34
# File 'lib/phase/config/ipa.rb', line 32

def full_image_url
  @full_image_url
end

#icon_image_urlString

Returns the URL of a Springboard-size (72px x 72px) app icon PNG.

Examples:

Sample setting

config.ipa.icon_image_url = "https://....png"

Returns:

  • (String)

    the URL of a Springboard-size (72px x 72px) app icon PNG



38
39
40
# File 'lib/phase/config/ipa.rb', line 38

def icon_image_url
  @icon_image_url
end