class Spaceship::Portal::App

Represents an App ID from the Developer Portal

Attributes

app_groups_count[RW]

@return (Fixnum) Number of associated app groups

app_id[RW]

@return (String) The identifier of this app, provided by the Dev Portal @example

"RGAWZGXSAA"
bundle_id[RW]

@return (String) The bundle_id (app identifier) of your app @example

"com.krausefx.app"
cloud_containers_count[RW]

@return (Fixnum) Number of associated cloud containers

dev_push_enabled[RW]

@return (Bool) Development Push Enabled?

enabled_features[RW]

@return (Array) List of enabled features

features[RW]

@return (Hash) Feature details

identifiers_count[RW]

@return (Fixnum) Number of associated identifiers

is_wildcard[RW]

@return (Bool) Is this app a wildcard app (e.g. com.krausefx.*)

name[RW]

@return (String) The name you provided for this app @example

"Spaceship"
platform[RW]

@return (String) the supported platform of this app @example

"ios"
prefix[RW]

Prefix provided by the Dev Portal @example

"5A997XSHK2"
prod_push_enabled[RW]

@return (Bool) Production Push Enabled?

Public Class Methods

all(mac: false) click to toggle source

@param mac [Bool] Fetches Mac apps if true @return (Array) Returns all apps available for this account

# File lib/spaceship/portal/app.rb, line 79
def all(mac: false)
  client.apps(mac: mac).map { |app| self.factory(app) }
end
create!(bundle_id: nil, name: nil, mac: false) click to toggle source

Creates a new App ID on the Apple Dev Portal

if bundle_id ends with '*' then it is a wildcard id otherwise, it is an explicit id @param bundle_id [String] the bundle id (app_identifier) of the app associated with this provisioning profile @param name [String] the name of the App @param mac [Bool] is this a Mac app? @return (App) The app you just created

# File lib/spaceship/portal/app.rb, line 90
def create!(bundle_id: nil, name: nil, mac: false)
  if bundle_id.end_with?('*')
    type = :wildcard
  else
    type = :explicit
  end

  new_app = client.create_app!(type, name, bundle_id, mac: mac)
  self.new(new_app)
end
factory(attrs) click to toggle source

Create a new object based on a hash. This is used to create a new object based on the server response.

# File lib/spaceship/portal/app.rb, line 73
def factory(attrs)
  self.new(attrs)
end
find(bundle_id, mac: false) click to toggle source

Find a specific App ID based on the bundle_id @param mac [Bool] Searches Mac apps if true @return (App) The app you're looking for. This is nil if the app can't be found.

# File lib/spaceship/portal/app.rb, line 104
def find(bundle_id, mac: false)
  all(mac: mac).find do |app|
    app.bundle_id == bundle_id
  end
end

Public Instance Methods

associate_groups(groups) click to toggle source

Associate specific groups with this app @return (App) The updated detailed app. This is nil if the app couldn't be found

# File lib/spaceship/portal/app.rb, line 128
def associate_groups(groups)
  raise "`associate_groups` not available for Mac apps" if mac?
  app = client.associate_groups_with_app(self, groups)
  self.class.factory(app)
end
delete!() click to toggle source

Delete this App ID. This action will most likely fail if the App ID is already in the store or there are active profiles @return (App) The app you just deletd

# File lib/spaceship/portal/app.rb, line 114
def delete!
  client.delete_app!(app_id, mac: mac?)
  self
end
details() click to toggle source

Fetch a specific App ID details based on the bundle_id @return (App) The app you're looking for. This is nil if the app can't be found.

# File lib/spaceship/portal/app.rb, line 121
def details
  app = client.details_for_app(self)
  self.class.factory(app)
end
mac?() click to toggle source

@return (Bool) Is this a Mac app?

# File lib/spaceship/portal/app.rb, line 143
def mac?
  platform == 'mac'
end
update_service(service) click to toggle source

Update a service for the app with given AppService object @return (App) The updated detailed app. This is nil if the app couldn't be found

# File lib/spaceship/portal/app.rb, line 136
def update_service(service)
  raise "`update_service` not implemented for Mac apps" if mac?
  app = client.update_service_for_app(self, service)
  self.class.factory(app)
end