forked from tidwall/SwiftWebSocket
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSwiftWebSocket.podspec
More file actions
16 lines (16 loc) · 809 Bytes
/
SwiftWebSocket.podspec
File metadata and controls
16 lines (16 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "SwiftWebSocket"
s.version = "2.7.0"
s.summary = "A high performance WebSocket client library for Swift."
s.homepage = "https://github.com/tidwall/SwiftWebSocket"
s.license = { :type => "Attribution License", :file => "LICENSE" }
s.source = { :git => "https://github.com/tidwall/SwiftWebSocket.git", :tag => "v2.7.0" }
s.authors = { 'Josh Baker' => 'joshbaker77@gmail.com' }
s.social_media_url = "https://twitter.com/tidwall"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.tvos.deployment_target = "9.0"
s.source_files = "Source/*.swift"
s.requires_arc = true
s.libraries = 'z'
end