Method: Spaceship::Portal::App#associate_cloud_containers

Defined in:
spaceship/lib/spaceship/portal/app.rb

#associate_cloud_containers(containers) ⇒ App

Associate specific iCloud Containers with this app

Returns:

  • (App)

    The updated detailed app. This is nil if the app couldn’t be found.


165
166
167
168
169
# File 'spaceship/lib/spaceship/portal/app.rb', line 165

def associate_cloud_containers(containers)
  raise "`associate_cloud_containers` not available for Mac apps" if mac?
  app = client.associate_cloud_containers_with_app(self, containers)
  self.class.factory(app)
end