diff --git a/socket.IO/0.4.0/socket.IO.podspec b/socket.IO/0.4.0/socket.IO.podspec new file mode 100644 index 000000000000000..c43a5d985cf5b53 --- /dev/null +++ b/socket.IO/0.4.0/socket.IO.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = "socket.IO" + s.version = "0.4.0" + 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.author = { "Philipp Kyeck" => "philipp@beta-interactive.de" } + s.source = { :git => "https://github.com/pkyeck/socket.IO-objc.git", :tag => '0.4.0' } + + s.source_files = '*.{h,m}' + + s.ios.deployment_target = '5.0' + s.requires_arc = true + + s.dependency 'SocketRocket', '~> 0.2' +end