Module: Spaceship::ConnectAPI::BundleIdPlatform
- Defined in:
- spaceship/lib/spaceship/connect_api.rb
Overview
Defined in the App Store Connect API docs:
Used for creating BundleId and Device
Constant Summary collapse
Class Method Summary collapse
Class Method Details
.map(platform) ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'spaceship/lib/spaceship/connect_api.rb', line 107 def self.map(platform) return platform if ALL.include?(platform) # Map from fastlane input and Spaceship::TestFlight platform values case platform.to_sym when :osx, :macos, :mac return Spaceship::ConnectAPI::Platform::MAC_OS when :ios return Spaceship::ConnectAPI::Platform::IOS else raise "Cannot find a matching platform for '#{platform}' - valid values are #{ALL.join(', ')}" end end |