Skip to content

Commit 2de0621

Browse files
committed
Merge branch 'master' of github.com:robbiehanson/CocoaAsyncSocket
2 parents adaeea6 + 3866f80 commit 2de0621

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

CocoaAsyncSocket.podspec

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'CocoaAsyncSocket'
3+
s.version = '0.0.1'
4+
s.license = 'public domain'
5+
s.summary = 'An asynchronous socket networking library for Cocoa.'
6+
s.homepage = 'http://code.google.com/p/cocoaasyncsocket/'
7+
s.authors = 'Dustin Voss', { 'Robbie Hanson' => 'robbiehanson@deusty.com' }
8+
9+
s.source = { :git => 'https://github.com/robbiehanson/CocoaAsyncSocket.git', :commit => 'a87a901f6b3bbc83e2c449ffd33515f8d31da2f8' }
10+
11+
s.description = 'CocoaAsyncSocket supports TCP and UDP. The AsyncSocket class is for TCP, and the AsyncUdpSocket class is for UDP. ' \
12+
'AsyncSocket is a TCP/IP socket networking library that wraps CFSocket and CFStream. It offers asynchronous ' \
13+
'operation, and a native Cocoa class complete with delegate support or use the GCD variant GCDAsyncSocket. ' \
14+
'AsyncUdpSocket is a UDP/IP socket networking library that wraps CFSocket. It works almost exactly like the TCP ' \
15+
'version, but is designed specifically for UDP. This includes queued non-blocking send/receive operations, full ' \
16+
'delegate support, run-loop based, self-contained class, and support for IPv4 and IPv6.'
17+
18+
s.source_files = '{GCD,RunLoop}/*.{h,m}'
19+
s.clean_paths = 'Vendor', 'GCD/Xcode', 'RunLoop/Xcode'
20+
s.framework = 'CFNetwork'
21+
end

0 commit comments

Comments
 (0)