class CocoapodsCatalystSupport::OSPlatform
Attributes
filter[R]
name[R]
sdk[R]
sdk_root[R]
Public Class Methods
ios()
click to toggle source
# File lib/cocoapods-catalyst-support/os_platform.rb, line 9 def self.ios OSPlatform.new :ios, 'iphone*', 'iPhoneOS', 'ios' end
macos()
click to toggle source
# File lib/cocoapods-catalyst-support/os_platform.rb, line 13 def self.macos OSPlatform.new :macos, 'macosx*', 'MacOS', 'maccatalyst' end
new(name, sdk, sdk_root, filter)
click to toggle source
# File lib/cocoapods-catalyst-support/os_platform.rb, line 26 def initialize(name, sdk, sdk_root, filter) @name = name @sdk = sdk @sdk_root = sdk_root @filter = filter end
tvos()
click to toggle source
# File lib/cocoapods-catalyst-support/os_platform.rb, line 21 def self.tvos OSPlatform.new :tvos, 'appletvos*', 'AppleTVOS', 'tvos' end
watchos()
click to toggle source
# File lib/cocoapods-catalyst-support/os_platform.rb, line 17 def self.watchos OSPlatform.new :watchos, 'watchos*', 'WatchOS', 'watchos' end