module Spaceship::Tunes
Attributes
This client stores the default client when using the lazy syntax Spaceship.app
instead of using the spaceship launcher
Public Class Methods
Authenticates with Apple's web services. This method has to be called once to generate a valid session. The session will automatically be used from then on.
This method will automatically use the username from the Appfile (if available) and fetch the password from the Keychain (if available)
@param user (String
) (optional): The username (usually the email address) @param password (String
) (optional): The password
@raise InvalidUserCredentialsError: raised if authentication failed
@return (Spaceship::Client
) The client the login method was called for
# File lib/spaceship/tunes/spaceship.rb, line 21 def login(user = nil, password = nil) @client = TunesClient.login(user, password) end
Open up the team selection for the user (if necessary).
If the user is in multiple teams, a team selection is shown. The user can then select a team by entering the number
# File lib/spaceship/tunes/spaceship.rb, line 29 def select_team @client.select_team end