spaceship/lib/spaceship/tunes/spaceship.rb in fastlane-2.90.0.beta.20180409050033 vs spaceship/lib/spaceship/tunes/spaceship.rb in fastlane-2.90.0.beta.20180410050128
- old
+ new
@@ -26,11 +26,14 @@
# 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
- def select_team
- @client.select_team
+ #
+ # @param team_id (String) (optional): The ID of a iTunesConnect team
+ # @param team_name (String) (optional): The name of a iTunesConnect team
+ def select_team(team_id: team_id = nil, team_name: team_name = nil)
+ @client.select_team(team_id: team_id, team_name: team_name)
end
end
end
end