forked from pkyeck/socket.IO-objc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocket.IO.podspec
More file actions
20 lines (16 loc) · 808 Bytes
/
Copy pathsocket.IO.podspec
File metadata and controls
20 lines (16 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "socket.IO"
s.version = "0.4.1"
s.summary = "socket.io v0.7.2+ for iOS devices."
s.description = <<-DESC
Interface to communicate between Objective C and Socket.IO with the help of websockets. It's based on fpotter's socketio-cocoa and uses other libraries/classes like SocketRocket, json-framework (optional) and jsonkit (optional).
DESC
s.homepage = "https://github.com/pkyeck/socket.IO-objc"
s.license = 'MIT'
s.source = { :git => "https://github.com/pkyeck/socket.IO-objc.git", :tag => '0.4.1' }
s.source_files = '*.{h,m}'
s.ios.deployment_target = '5.0'
s.requires_arc = true
s.dependency 'SocketRocket', '~> 0.2'
end