forked from dreese/FastSocket
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFastSocket.podspec
More file actions
22 lines (21 loc) · 1.14 KB
/
Copy pathFastSocket.podspec
File metadata and controls
22 lines (21 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "FastSocket"
s.version = "1.6"
s.summary = "A fast, synchronous Objective-C wrapper around BSD sockets for iOS and OS X."
s.description = <<-DESC
A fast, synchronous Objective-C wrapper around BSD sockets for iOS and OS X.
Send and receive raw bytes over a socket as fast as possible. Includes methods
for transferring files while optionally computing a checksum for verification.
Use this class if fast network communication is what you need. If you want to
do something else while your network operations finish, then an asynchronous
API might be better.
DESC
s.homepage = "https://github.com/dreese/FastSocket"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Dan Reese" => "dan@danielreese.com" }
s.social_media_url = "http://twitter.com/dreese"
s.source = { :git => "https://github.com/dreese/FastSocket.git", :tag => "v1.6" }
s.source_files = 'FastSocket.{h,m}', 'FastServerSocket.{h,m}'
s.requires_arc = true
s.framework = 'Foundation'
end