Files
BlueSocket/BlueSocket.podspec
T
Danny Sung 68ec325aa8 Updated podspec for 2.0.1 (#203)
* Updated podspec

* Update README for minimum toolchain versions
2021-06-28 10:41:10 -07:00

20 lines
718 B
Ruby

Pod::Spec.new do |s|
s.name = "BlueSocket"
s.version = "2.0.1"
s.summary = "Socket framework for Swift using the Swift Package Manager"
s.homepage = "https://github.com/Kitura/BlueSocket"
s.license = { :type => "Apache License, Version 2.0" }
s.author = "IBM and the Kitura project authors"
s.module_name = 'Socket'
s.swift_version = '5.1'
s.requires_arc = true
s.osx.deployment_target = "10.11"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/Kitura/BlueSocket.git", :tag => s.version }
s.source_files = "Sources/Socket/*.swift"
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.1',
}
end