forked from francoisTemasys/socket.IO-objc
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsocket.io-objc.podspec
More file actions
15 lines (15 loc) · 817 Bytes
/
socket.io-objc.podspec
File metadata and controls
15 lines (15 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |spec|
spec.name = 'socket.io-objc'
spec.version = '0.6.4'
spec.license = 'MIT'
spec.homepage = 'https://github.com/francoisp/socket.IO-objc/'
spec.authors = { 'Philipp Kyeck' => 'philipp@beta-interactive.de' }
spec.summary = 'Socket.io 1.x client for Objective-C projects., with backward 0.9 compatibility'
spec.description = "Interface to communicate between Objective C and Socket.IO with the help of websockets. Originally based on fpotter's socketio-cocoa and uses square's SocketRocket.\n"
spec.source = { :git => 'https://github.com/francoisp/socket.IO-objc.git' }
spec.source_files = '*.{h,m}'
spec.requires_arc = true
spec.dependency 'SocketRocket'
spec.platforms = { "ios" => "6.0",
"osx" => "10.8" }
end