-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSocket.podspec
25 lines (17 loc) · 904 Bytes
/
Socket.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "Socket"
s.version = "0.2.0"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/Gagnant/Socket"
s.author = "Andrew Visotskiy"
s.summary = "Asynchronous socket networking library."
s.description = "Socket supports TCP. Socket is a TCP/IP socket networking library. It offers asynchronous " \
"operation, and a native Cocoa class complete with delegate support. Includes non-blocking " \
"send/receive operations, full delegate support, run-loop based, self-contained class, and " \
"support for IPv4 and IPv6."
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.6"
s.source = { :git => "https://github.com/Gagnant/Socket.git", :tag => "#{s.version}" }
s.source_files = "Socket/*.swift"
s.frameworks = "Foundation"
end